aboutsummaryrefslogtreecommitdiff
path: root/go/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-10-09 18:27:47 -0500
committerJoel Martin <github@martintribe.org>2014-10-09 18:27:47 -0500
commitad7e866ea1d4d035d876e58bca681a72099449af (patch)
treecbd73a7cda5adc4aba7293231ab0efa3f107edb0 /go/Makefile
parentd667a1bb2e7294f8722bb31f1e6e8207b971c913 (diff)
downloadmal-ad7e866ea1d4d035d876e58bca681a72099449af.tar.gz
mal-ad7e866ea1d4d035d876e58bca681a72099449af.zip
go: add readline.go that wraps libreadline/libedit
Diffstat (limited to 'go/Makefile')
-rw-r--r--go/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/go/Makefile b/go/Makefile
index 729d2cc..18faa4f 100644
--- a/go/Makefile
+++ b/go/Makefile
@@ -2,7 +2,8 @@ export GOPATH := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
#####################
-SOURCES_BASE = src/types/types.go src/reader/reader.go src/printer/printer.go \
+SOURCES_BASE = src/types/types.go src/readline/readline.go \
+ src/reader/reader.go src/printer/printer.go \
src/env/env.go src/core/core.go
SOURCES_LISP = src/stepA_more/stepA_more.go
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)