1#!/bin/sh
2
3# we don't do it anymore
4### # TODO: run hsc2hs first to generate FFI.hs
5
6# we need to install `derive' and put it in $PATH
7PATH="`pwd`/../.cabal-sandbox/bin:$PATH"
8
9make o-gen V=1
10
11ghci-8.0.1 -i../ -i./build/ -package=extra -package=QuickCheck -Wno-partial-type-signatures -package-db=../.cabal-sandbox/x86_64-linux-ghc-8.0.1-packages.conf.d/ build/fsm.o fsm.hs 
12
13