aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 12:47:10 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 12:47:10 +0800
commit911c932ec426ee45c9380bd26714c4bb505a3a88 (patch)
tree5224b91b5622997ccfc882c2e4e0b22e97bc450b /Makefile
parentRevert "Remove the trivial habitual makefile" (diff)
downloadpowxy-911c932ec426ee45c9380bd26714c4bb505a3a88.tar.gz
powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.tar.zst
powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.zip
Use a global struct with version and source info
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1810daf..a75b758 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,7 @@
-powxy: *.go
+powxy: *.go version.go
go build -o powxy
+
+version.go:
+ printf 'package main\n\nfunc init() {\n\tglobal.Version = "%s"\n}\n' $(shell git describe --tags --always --dirty) > $@
+
+.PHONY: version.go