From 17351ac6cb396ba24a0e0c56996152c4b11e6b04 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 4 May 2025 05:12:05 -0300 Subject: Make: Use $< over $? --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ -- cgit v1.2.3