summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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