diff options
author | Franklin Wei <git@fwei.tk> | 2017-02-10 17:11:55 -0500 |
---|---|---|
committer | Franklin Wei <git@fwei.tk> | 2017-02-10 17:12:34 -0500 |
commit | f483a079508f100dcc3f654f674f387a40e5cd6a (patch) | |
tree | f43817219eb582fb131dfdecb6cc073847adaaec | |
parent | a4dc244b4e9eebe60ff2a32e340a0155836f2c32 (diff) |
puzzles: fix makefile producing temporary files in the build directory (sorry!)
- thanks to Michael Sevakis for catching this
Change-Id: Ia02ba7a06a55bc0741df9ce2c21f868d7e0abdd4
-rw-r--r-- | apps/plugins/puzzles/puzzles.make | 8 |
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 PUZZLESOPTIMIZE := -O2 ifeq ($(MODELNAME), sansac200v2) -PUZZLESOPTIMIZE := -Os +PUZZLESOPTIMIZE := -Os # tiny plugin buffer endif # we suppress all warnings @@ -72,11 +72,11 @@ $(PUZZLES_OBJDIR)/puzzles.ovl: $(PUZZLES_OBJ) $(PUZZLES_OUTLDS) $(TLSFLIB) $(call PRINTS,LD $(@F))$(call objcopy,$(basename $@).elf,$@) else $(PUZZLES_OBJDIR)/sgt-%.rock: $(PUZZLES_OBJDIR)/%.o $(PUZZLES_SHARED_OBJ) $(TLSFLIB) - $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o $(BUILDDIR)/$*.elf \ + $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o $(PUZZLES_OBJDIR)/$*.elf \ $(filter %.o, $^) \ $(filter %.a, $+) \ - -lgcc $(PLUGINLDFLAGS) - $(SILENT)$(call objcopy,$(BUILDDIR)/$*.elf,$@) + -lgcc $(filter-out -Wl%.map, $(PLUGINLDFLAGS)) -Wl,-Map,$(PUZZLES_OBJDIR)/$*.map + $(SILENT)$(call objcopy,$(PUZZLES_OBJDIR)/$*.elf,$@) endif # special pattern rule for compiling puzzles with extra flags |