aboutsummaryrefslogtreecommitdiff
path: root/go/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-10-04 23:40:43 -0500
committerJoel Martin <github@martintribe.org>2014-10-04 23:40:43 -0500
commit9feb2c9527294d82592bf35b97f8039f61bbec45 (patch)
treead98f49352e56fe439b43385c4612aa337c1c095 /go/Makefile
parent8b8afefc458810da516272d679b5a9de1f0daa17 (diff)
downloadmal-9feb2c9527294d82592bf35b97f8039f61bbec45.tar.gz
mal-9feb2c9527294d82592bf35b97f8039f61bbec45.zip
go: add step3_env
Diffstat (limited to 'go/Makefile')
-rw-r--r--go/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/go/Makefile b/go/Makefile
index de72c44..695627e 100644
--- a/go/Makefile
+++ b/go/Makefile
@@ -2,13 +2,13 @@ export GOPATH := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
#####################
-SOURCES_BASE = src/types/types.go src/reader/reader.go src/printer/printer.go
-SOURCES_LISP = src/step2_eval/step2_eval.go
+SOURCES_BASE = src/types/types.go src/reader/reader.go src/printer/printer.go src/env/env.go
+SOURCES_LISP = src/step3_env/step3_env.go
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
-SRCS = step0_repl.go step1_read_print.go step2_eval.go
+SRCS = step0_repl.go step1_read_print.go step2_eval.go step3_env.go
BINS = $(SRCS:%.go=%)
#####################