aboutsummaryrefslogtreecommitdiff
path: root/go/Makefile
diff options
context:
space:
mode:
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=%)
#####################