aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a704fa0..eeedc6a 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,14 @@ PREFIX = /usr/local
DPREFIX = ${DESTDIR}/${PREFIX}
target = gsp
+sources = main.go \
+ formatter/formatter.go \
+ parser/errors.go \
+ parser/parser.go \
+ parser/reader.go
all: ${target}
-gsp:
+gsp: ${sources}
go build
install: