summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkliment <kliment.yanev@gmail.com>2012-02-22 02:57:05 -0800
committerkliment <kliment.yanev@gmail.com>2012-02-22 02:57:05 -0800
commit00559b532ab1509b80a501e9525707b26a1c2b13 (patch)
treeec60bbd01dd587900594f6561489c52ea2fadf35
parenta98a51f0cd0575e70f31e7c9e88d0c64865276c3 (diff)
parent0028f59531a269f6740832c31f2f05f9cb2e40e3 (diff)
Merge pull request #139 from triffid/makefile-fix
fix applet/core.a: not found
-rw-r--r--Sprinter/Makefile2
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)