summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2014-03-26 16:36:54 +1100
committerJed Barber <jjbarber@y7mail.com>2014-03-26 16:36:54 +1100
commit16eb169df1f5a2dedfc6f71673982960d3ea73e6 (patch)
treeb39dff2b6117f0d33de6debdc28673877ddd2cc0 /makefile
parent4885bc81e3716841723b585572ff157b4e324198 (diff)
Brainfuck interpreter frontend
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/makefile b/makefile
index 0eb8b14..66a2928 100644
--- a/makefile
+++ b/makefile
@@ -1,13 +1,17 @@
OUTPUTDIR = bin
-EXECUTABLES = ${OUTPUTDIR}/test ${OUTPUTDIR}/fractran ${OUTPUTDIR}/thue ${OUTPUTDIR}/unlambda
+EXECUTABLES = ${OUTPUTDIR}/test \
+ ${OUTPUTDIR}/fractran \
+ ${OUTPUTDIR}/thue \
+ ${OUTPUTDIR}/unlambda \
+ ${OUTPUTDIR}/brainfuck
SWITCHES = -XDeriveDataTypeable
-all: testprog fractranprog thueprog unlambdaprog
+all: testprog fractranprog thueprog unlambdaprog brainfuckprog
clean:
@@ -31,3 +35,5 @@ thueprog:
unlambdaprog:
ghc ${SWITCHES} --make unlambda.hs -o ${OUTPUTDIR}/unlambda
+brainfuckprog:
+ ghc ${SWITCHES} --make brainfuck.hs -o ${OUTPUTDIR}/brainfuck