summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-04 05:12:05 -0300
committerEuAndreh <eu@euandre.org>2025-05-04 05:12:05 -0300
commit17351ac6cb396ba24a0e0c56996152c4b11e6b04 (patch)
tree1418ae539f896346782982f14d78f832a2ab805b
parentre s/guuid/uuid/g (diff)
downloadhsts-17351ac6cb396ba24a0e0c56996152c4b11e6b04.tar.gz
hsts-17351ac6cb396ba24a0e0c56996152c4b11e6b04.tar.xz
Make: Use $< over $?
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2e93d85..21caeb4 100644
--- a/Makefile
+++ b/Makefile
@@ -84,7 +84,7 @@ src/version.go: Makefile
echo 'package $(NAME); const Version = "$(VERSION)"' > $@
$(NAME).bin: src/main.bin
- ln -fs $? $@
+ ln -fs src/main.bin $@