summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2014-12-16 12:32:02 +1100
committerJed Barber <jjbarber@y7mail.com>2014-12-16 12:32:02 +1100
commit2909ad4b7b96a93d04c01135683d4dee6356def2 (patch)
treebc5d22d3cca77b4e2762f621d7169f743deddfc3 /makefile
parentef3babe261b22d44b82b4768339f02486d8cc4ef (diff)
Grasp interpreter main program added, still untested
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/makefile b/makefile
index 43c7a44..e9f7a72 100644
--- a/makefile
+++ b/makefile
@@ -6,13 +6,14 @@ EXECUTABLES = ${OUTPUTDIR}/test \
${OUTPUTDIR}/fractran \
${OUTPUTDIR}/thue \
${OUTPUTDIR}/unlambda \
- ${OUTPUTDIR}/brainfuck
+ ${OUTPUTDIR}/brainfuck \
+ ${OUTPUTDIR}/grasp
SWITCHES = -XDeriveDataTypeable
-all: testprog fractranprog thueprog unlambdaprog brainfuckprog
+all: testprog fractranprog thueprog unlambdaprog brainfuckprog graspprog
clean:
@@ -43,3 +44,7 @@ unlambdaprog:
brainfuckprog:
cd ${SOURCEDIR}; \
ghc ${SWITCHES} --make brainfuck.hs -o ../${OUTPUTDIR}/brainfuck
+
+graspprog:
+ cd ${SOURCEDIR}; \
+ ghc ${SWITCHES} --make grasp.hs -o ../${OUTPUTDIR}/grasp