diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-03-14 01:58:00 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-03-14 01:58:00 +1100 |
commit | 370847f0326e1cdf848d674b7cfd89565f3e8757 (patch) | |
tree | 5997cbd03c11909134676789c2fd479b830753bf /makefile | |
parent | f309a14ee66ca569d8f763f02c750f088165fe95 (diff) |
Added wrapper command line program for unlambda interpreter
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 + |