diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile index e781070..ee11e92 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,13 @@ PREFIX?=/usr/local _INSTDIR=$(PREFIX) BINDIR?=$(_INSTDIR)/getwtxt VERSION?=$(shell git tag | grep ^v | sort -V | tail -n 1) -GOFLAGS?=-tags netgo \ - -ldflags '-X github.com/getwtxt/getwtxt/svc.Vers=${VERSION} -extldflags "-static"' +GOFLAGS?=-tags netgo -ldflags '-X github.com/getwtxt/getwtxt/svc.Vers=${VERSION} -extldflags "-static"' getwtxt: getwtxt.go go.mod go.sum @echo @echo Building getwtxt. This may take a minute or two. @mkdir -p logs - go build $(GOFLAGS) \ - -o $@ + go build $(GOFLAGS) -o $@ @echo @echo ...Done\! |