diff options
author | xengineering <me@xengineering.eu> | 2024-04-30 20:50:31 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-04-30 20:50:31 +0200 |
commit | 581feffe944a5eeb42f4cba3e4d24f0e1d5b0b3f (patch) | |
tree | 65abe9db24d27e9904d2f1c4833e613550c3d8c2 /Makefile | |
parent | dd6870ba93242d528cff2c4019934ddb8782c9db (diff) | |
download | ceres-581feffe944a5eeb42f4cba3e4d24f0e1d5b0b3f.tar ceres-581feffe944a5eeb42f4cba3e4d24f0e1d5b0b3f.tar.zst ceres-581feffe944a5eeb42f4cba3e4d24f0e1d5b0b3f.zip |
Add source version to executable
The output of `git describe --dirty --always` is passed as a string via
Go build flags.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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: |