Paper: Remove "NOT YET" on URL in preparation for release.
[match/match.git] / program / Makefile
... / ...
CommitLineData
1# Let's keep it simple for now.
2# -cpp: Handle GHC 6.6.1 compatibility checks.
3# -fglasgow-exts: Handle rank-2 type of RandomizedMonad, among other things.
4all:
5# ghc -cpp -fglasgow-exts --make -c *.hs
6 ghc -cpp -fglasgow-exts --make *.hs -o match
7all-optimized:
8# ghc -cpp -fglasgow-exts --make -O -hisuf O.hi -osuf O.o -c *.hs
9 ghc -cpp -fglasgow-exts --make -O -hisuf O.hi -osuf O.o *.hs -o match.O
10clean:
11 rm -f *.hi *.o match
12
13# Necessary libraries (on Fedora): ghc-fgl. Others I miss?