summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-09-27 15:24:12 -0300
committerEuAndreh <eu@euandre.org>2024-09-27 15:24:12 -0300
commitff27ca2543fa7a7181e285a0d3adc898ede1aa35 (patch)
treedf4bfe0ee84ba20ae532af7974fcf5c0a411b58a /Makefile
parentMakefile: Define $(GOCFLAGS) and $(GOLDFLAGS) based on $(PREFIX) (diff)
downloadbinder-ff27ca2543fa7a7181e285a0d3adc898ede1aa35.tar.gz
binder-ff27ca2543fa7a7181e285a0d3adc898ede1aa35.tar.xz
Makefile: "var version" -> "const Version"
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1bcfa5..775d45d 100644
--- a/Makefile
+++ b/Makefile
@@ -83,7 +83,7 @@ $(NAME).bin: src/main.bin
ln -fs $? $@
src/version.go: Makefile
- echo 'package $(NAME); var version = "$(VERSION)"' > $@
+ echo 'package $(NAME); const Version = "$(VERSION)"' > $@