aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-04 05:16:10 -0300
committerEuAndreh <eu@euandre.org>2025-05-04 05:16:10 -0300
commit3cbb490d80bae276451fd59159ebffcd0156b882 (patch)
treedf5176704bddc842297063e7b119c80a78f3807c
parentSwitch from POSIX sh to Go (diff)
downloadgistatic-3cbb490d80bae276451fd59159ebffcd0156b882.tar.gz
gistatic-3cbb490d80bae276451fd59159ebffcd0156b882.tar.xz
Make: Use $< over $?
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6283e52..072737b 100644
--- a/Makefile
+++ b/Makefile
@@ -83,7 +83,7 @@ src/version.go: Makefile
echo 'package $(NAME); const Version = "$(VERSION)"' > $@
$(NAME).bin: src/main.bin
- ln -fs $? $@
+ ln -fs src/main.bin $@