diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-09-09 10:47:05 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-09 10:47:05 +0200 |
commit | 3b3f7763f2f8059b3a954eff960a4cf2b5a9b648 (patch) | |
tree | 3277ee605ca11d6418ab444e601ffe5dff4e53fd /Makefile | |
parent | 0407c133037d522283bc53aa611677f821b234e3 (diff) |
Fix Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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: |