aboutsummaryrefslogtreecommitdiff
path: root/nim/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-03-03 23:14:53 -0600
committerJoel Martin <github@martintribe.org>2015-03-03 23:14:53 -0600
commit2c47ac541ec6f2c959a0f0ff4f0f654400efd2fd (patch)
treeb5bd02b4acebe4fcae1e98ee8feaa09392364e2f /nim/Makefile
parent2b0fa48326927683fa19f399b3edb8aae3dbcd36 (diff)
downloadmal-2c47ac541ec6f2c959a0f0ff4f0f654400efd2fd.tar.gz
mal-2c47ac541ec6f2c959a0f0ff4f0f654400efd2fd.zip
Nim: rename stepA_interop to stepA_mal
Diffstat (limited to 'nim/Makefile')
-rw-r--r--nim/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nim/Makefile b/nim/Makefile
index 1da1ae6..4b8707d 100644
--- a/nim/Makefile
+++ b/nim/Makefile
@@ -1,14 +1,14 @@
#####################
SOURCES_BASE = types.nim reader.nim printer.nim
-SOURCES_LISP = env.nim core.nim stepA_interop.nim
+SOURCES_LISP = env.nim core.nim stepA_mal.nim
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
SRCS = step0_repl.nim step1_read_print.nim step2_eval.nim step3_env.nim \
step4_if_fn_do.nim step5_tco.nim step6_file.nim step7_quote.nim \
- step8_macros.nim step9_try.nim stepA_interop.nim
+ step8_macros.nim step9_try.nim stepA_mal.nim
BINS = $(SRCS:%.nim=%)
#####################