Skip to content
Snippets Groups Projects
Commit 9166ea01 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 14343c4c
No related branches found
No related tags found
No related merge requests found
......@@ -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