aboutsummaryrefslogtreecommitdiff
path: root/haskell/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-12-23 22:37:43 -0700
committerJoel Martin <github@martintribe.org>2015-01-09 16:16:52 -0600
commitfa9a9758e0d15abe670fbbfd8efa1fce013b1414 (patch)
tree7ee5dceceaa79cf0269ae74d10aa297504c69da3 /haskell/Makefile
parentb76aa73bc76a28d7c6bb3c5a43acc9afd9ec42c8 (diff)
downloadmal-fa9a9758e0d15abe670fbbfd8efa1fce013b1414.tar.gz
mal-fa9a9758e0d15abe670fbbfd8efa1fce013b1414.zip
Haskell: steps 4-6. Line editing. Simpler fn calls.
Diffstat (limited to 'haskell/Makefile')
-rw-r--r--haskell/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/haskell/Makefile b/haskell/Makefile
index d43db16..156a7e7 100644
--- a/haskell/Makefile
+++ b/haskell/Makefile
@@ -4,8 +4,9 @@ SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
-SRCS = step0_repl.hs step1_read_print.hs step2_eval.hs step3_env.hs
-OTHER_SRCS = Types.hs Reader.hs Printer.hs Env.hs
+SRCS = step0_repl.hs step1_read_print.hs step2_eval.hs step3_env.hs \
+ step4_if_fn_do.hs step5_tco.hs step6_file.hs
+OTHER_SRCS = Readline.hs Types.hs Reader.hs Printer.hs Env.hs Core.hs
BINS = $(SRCS:%.hs=%)
#####################