diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-06-09 23:14:56 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-06-09 23:26:30 -0400 |
commit | 45d67236e16365e0c6ea90e9b8baa3008d50996d (patch) | |
tree | 4639f792e06633280dfe250fd2eba796b8cb6089 /Makefile | |
parent | 3b6d1cc9f8acf82be9f168657b6ecab1eb34721e (diff) | |
download | getwtxt-45d67236e16365e0c6ea90e9b8baa3008d50996d.tar.gz |
setting version via build flags
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 598ff00..2151717 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ PREFIX?=/usr/local _INSTDIR=$(PREFIX) BINDIR?=$(_INSTDIR)/getwtxt +VERSION?=$(shell git tag | grep ^v | sort -V | tail -n 1) GOFLAGS?=-tags netgo \ - -ldflags '-extldflags "-static"' \ + -ldflags '-X github.com/getwtxt/getwtxt/svc.Vers=${VERSION} -extldflags "-static"' \ -buildmode pie getwtxt: getwtxt.go go.mod go.sum |