summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/makefile b/makefile
index b702844..4388627 100644
--- a/makefile
+++ b/makefile
@@ -1,11 +1,11 @@
OUTPUTDIR = bin
-EXECUTABLES = ${OUTPUTDIR}/test ${OUTPUTDIR}/fractran ${OUTPUTDIR}/thue
+EXECUTABLES = ${OUTPUTDIR}/test ${OUTPUTDIR}/fractran ${OUTPUTDIR}/thue ${OUTPUTDIR}/unlambda
-all: testprog fractranprog thueprog
+all: testprog fractranprog thueprog unlambdaprog
clean:
@@ -26,3 +26,6 @@ fractranprog:
thueprog:
ghc --make thue.hs -o ${OUTPUTDIR}/thue
+unlambdaprog:
+ ghc -XDeriveDataTypeable --make unlambda.hs -o ${OUTPUTDIR}/unlambda
+