aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-08-18 09:53:33 -0700
committerMike Crute <mike@crute.us>2023-08-18 09:53:33 -0700
commit277766b1170ce598dcb9f59b5851df368d01e270 (patch)
tree99f4de744e97e2a3111fc5d69fe607e4a8c204e6 /Makefile
parent4aac2b6026d27d4eba660b674bdb1f34bcfbfc54 (diff)
downloadcloud-identity-broker-master.tar.bz2
cloud-identity-broker-master.tar.xz
cloud-identity-broker-master.zip
Cleanup dependencies and simplify mainHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c45bb6c..c47d8b2 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ BINARY=cloud-identity-broker
3 3
4$(BINARY): $(shell find . -name '*.go') go.mod 4$(BINARY): $(shell find . -name '*.go') go.mod
5 CGO_ENABLED=0 go build \ 5 CGO_ENABLED=0 go build \
6 -ldflags "-X main.appVersion=$(shell git describe --long --tags --dirty --always)" \ 6 -ldflags "-X main.version=$(shell git describe --long --tags --dirty --always)" \
7 -o $@ 7 -o $@
8 8
9.PHONY: vet 9.PHONY: vet