aboutsummaryrefslogtreecommitdiff
path: root/go/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-10-06 23:53:51 -0500
committerJoel Martin <github@martintribe.org>2014-10-06 23:53:51 -0500
commit82efc357ba67da1eaf35ca92b6f249a344aae8d5 (patch)
tree1cdf298c1c971a3bdecec1e31727ea8f214eedef /go/Makefile
parentaeabd2145ff133cc6991166d8f1023ed33e223c8 (diff)
downloadmal-82efc357ba67da1eaf35ca92b6f249a344aae8d5.tar.gz
mal-82efc357ba67da1eaf35ca92b6f249a344aae8d5.zip
go: add step8_macros
Diffstat (limited to 'go/Makefile')
-rw-r--r--go/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/go/Makefile b/go/Makefile
index ddf29f6..dbdfeaf 100644
--- a/go/Makefile
+++ b/go/Makefile
@@ -4,13 +4,14 @@ export GOPATH := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
SOURCES_BASE = src/types/types.go src/reader/reader.go src/printer/printer.go \
src/env/env.go src/core/core.go
-SOURCES_LISP = src/step7_quote/step7_quote.go
+SOURCES_LISP = src/step8_macros/step8_macros.go
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
SRCS = step0_repl.go step1_read_print.go step2_eval.go step3_env.go \
- step4_if_fn_do.go step5_tco.go step6_file.go step7_quote.go
+ step4_if_fn_do.go step5_tco.go step6_file.go step7_quote.go \
+ step8_macros.go
BINS = $(SRCS:%.go=%)
#####################