summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-09-27 15:25:55 -0300
committerEuAndreh <eu@euandre.org>2024-09-27 15:25:55 -0300
commitfd218c62b2c7d426a4ed5d802610ed4ba4144222 (patch)
treebe159a4ce48010d94017272764759ae50939896f /Makefile
parentMakefile: Define $(GOCFLAGS) and $(GOLDFLAGS) based on $(PREFIX) (diff)
downloaduntls-fd218c62b2c7d426a4ed5d802610ed4ba4144222.tar.gz
untls-fd218c62b2c7d426a4ed5d802610ed4ba4144222.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 317d2e6..35fc78c 100644
--- a/Makefile
+++ b/Makefile
@@ -84,7 +84,7 @@ $(NAME).bin: src/main.bin
ln -fs $? $@
src/version.go: Makefile
- echo 'package $(NAME); var version = "$(VERSION)"' > $@
+ echo 'package $(NAME); const Version = "$(VERSION)"' > $@