Skip to content
Snippets Groups Projects
Commit c089e1ba authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

use $^ instead of $? for the prereqs for the ans2asc link command

Fixes the link failure when sauce.o didn't need to be rebuilt.
parent d61ddae3
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2021 passed
......@@ -218,7 +218,7 @@ $(JSEXEC): $(JSEXEC_OBJS) $(SBBS)
# ANS2ASC
$(ANS2ASC): $(OBJODIR)/ans2asc.o $(OBJODIR)/sauce.o $(XPDEV_LIB)
@echo Linking $@
$(QUIET)$(CC) $(CONSOLE_LDFLAGS) -o $@ $? -lm
$(QUIET)$(CC) $(CONSOLE_LDFLAGS) -o $@ $^ -lm
# ASC2ANS
$(ASC2ANS): $(OBJODIR)/asc2ans.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment