summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2ae2e86..3e638f7 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,16 @@ TARGET_EXEC := ceres
BUILD_DIR := ./build
MODULE_NAME := xengineering.eu/ceres
+VERSION := $(shell git describe --dirty --always)
+
all: $(BUILD_DIR)/$(TARGET_EXEC)
$(BUILD_DIR)/$(TARGET_EXEC):
- go build -o $@ $(MODULE_NAME)
+ go build -ldflags "-X main.gitDescribe=$(VERSION)" -o $@ $(MODULE_NAME)
.PHONY: debug
debug:
- go run $(MODULE_NAME)
+ go run -ldflags "-X main.gitDescribe=$(VERSION)" $(MODULE_NAME)
.PHONY: clean
clean: