summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-02-10 17:11:55 -0500
committerFranklin Wei <git@fwei.tk>2017-02-10 17:12:34 -0500
commitf483a079508f100dcc3f654f674f387a40e5cd6a (patch)
treef43817219eb582fb131dfdecb6cc073847adaaec /apps
parenta4dc244b4e9eebe60ff2a32e340a0155836f2c32 (diff)
downloadrockbox-f483a079508f100dcc3f654f674f387a40e5cd6a.tar.gz
rockbox-f483a079508f100dcc3f654f674f387a40e5cd6a.zip
puzzles: fix makefile producing temporary files in the build directory (sorry!)
- thanks to Michael Sevakis for catching this Change-Id: Ia02ba7a06a55bc0741df9ce2c21f868d7e0abdd4
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/puzzles/puzzles.make8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/puzzles/puzzles.make b/apps/plugins/puzzles/puzzles.make
index 6f63f0a8ee..8780986a51 100644
--- a/apps/plugins/puzzles/puzzles.make
+++ b/apps/plugins/puzzles/puzzles.make
@@ -44,7 +44,7 @@ endif
44 44
45PUZZLESOPTIMIZE := -O2 45PUZZLESOPTIMIZE := -O2
46ifeq ($(MODELNAME), sansac200v2) 46ifeq ($(MODELNAME), sansac200v2)
47PUZZLESOPTIMIZE := -Os 47PUZZLESOPTIMIZE := -Os # tiny plugin buffer
48endif 48endif
49 49
50# we suppress all warnings 50# we suppress all warnings
@@ -72,11 +72,11 @@ $(PUZZLES_OBJDIR)/puzzles.ovl: $(PUZZLES_OBJ) $(PUZZLES_OUTLDS) $(TLSFLIB)
72 $(call PRINTS,LD $(@F))$(call objcopy,$(basename $@).elf,$@) 72 $(call PRINTS,LD $(@F))$(call objcopy,$(basename $@).elf,$@)
73else 73else
74$(PUZZLES_OBJDIR)/sgt-%.rock: $(PUZZLES_OBJDIR)/%.o $(PUZZLES_SHARED_OBJ) $(TLSFLIB) 74$(PUZZLES_OBJDIR)/sgt-%.rock: $(PUZZLES_OBJDIR)/%.o $(PUZZLES_SHARED_OBJ) $(TLSFLIB)
75 $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o $(BUILDDIR)/$*.elf \ 75 $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o $(PUZZLES_OBJDIR)/$*.elf \
76 $(filter %.o, $^) \ 76 $(filter %.o, $^) \
77 $(filter %.a, $+) \ 77 $(filter %.a, $+) \
78 -lgcc $(PLUGINLDFLAGS) 78 -lgcc $(filter-out -Wl%.map, $(PLUGINLDFLAGS)) -Wl,-Map,$(PUZZLES_OBJDIR)/$*.map
79 $(SILENT)$(call objcopy,$(BUILDDIR)/$*.elf,$@) 79 $(SILENT)$(call objcopy,$(PUZZLES_OBJDIR)/$*.elf,$@)
80endif 80endif
81 81
82# special pattern rule for compiling puzzles with extra flags 82# special pattern rule for compiling puzzles with extra flags