Lindenii Project Forge
Commit info | |
---|---|
ID | 4993a2071afad5bc1db6ad117f143a58ae0af8a3 |
Author | Runxi Yu<me@runxiyu.org> |
Author date | Fri, 14 Feb 2025 14:13:47 +0800 |
Committer | Runxi Yu<me@runxiyu.org> |
Committer date | Fri, 14 Feb 2025 14:13:47 +0800 |
Actions | Get patch |
Makefile: Make version.go a .PHONY
.PHONY: clean
.PHONY: clean version.go
forge: $(filter-out forge,$(wildcard *)) version.go go build -o $@ version.go: printf 'package main\nconst VERSION="%s"\n' $(shell git describe --tags --long --always --dirty) > $@ clean: $(RM) forge version.go