diff options
-rw-r--r-- | Sprinter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sprinter/Makefile b/Sprinter/Makefile index 639cf1b..de3223d 100644 --- a/Sprinter/Makefile +++ b/Sprinter/Makefile @@ -199,7 +199,7 @@ extcoff: $(TARGET).elf $(NM) -n $< > $@ # Link: create ELF output file from library. -applet/$(TARGET).elf: applet/core.a applet/$(TARGET).cpp +applet/$(TARGET).elf: applet/$(TARGET).cpp applet/core.a $(CC) $(ALL_CFLAGS) -Wl,--gc-sections -o $@ applet/$(TARGET).cpp -L. applet/core.a $(LDFLAGS) applet/core.a: $(OBJ) |