diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 12:47:10 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 12:47:10 +0800 |
commit | 911c932ec426ee45c9380bd26714c4bb505a3a88 (patch) | |
tree | 5224b91b5622997ccfc882c2e4e0b22e97bc450b /Makefile | |
parent | Revert "Remove the trivial habitual makefile" (diff) | |
download | powxy-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-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |