summaryrefslogtreecommitdiff
path: root/apps/plugins/sudoku/Makefile
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-01-04 21:07:05 +0000
committerJens Arnold <amiconn@rockbox.org>2008-01-04 21:07:05 +0000
commitd3586837fa9221a7ef104550b4c0aadc1a6ea77c (patch)
tree9e25efe160052fc4184304907b0009b5b2cf0267 /apps/plugins/sudoku/Makefile
parente6e5697212943ccb35e94664b138f9289d2758b4 (diff)
downloadrockbox-d3586837fa9221a7ef104550b4c0aadc1a6ea77c.tar.gz
rockbox-d3586837fa9221a7ef104550b4c0aadc1a6ea77c.zip
Stop wasting binary size + ram for several plugins. Plugins are supposed to be linked with --gc-sections, in case they use plugin library elements.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15997 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/sudoku/Makefile')
-rw-r--r--apps/plugins/sudoku/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/sudoku/Makefile b/apps/plugins/sudoku/Makefile
index bb1425c628..948b315a32 100644
--- a/apps/plugins/sudoku/Makefile
+++ b/apps/plugins/sudoku/Makefile
@@ -39,7 +39,7 @@ all: $(OUTPUT)
39ifndef SIMVER 39ifndef SIMVER
40$(OBJDIR)/sudoku.elf: $(OBJS) $(LINKFILE) $(BITMAPLIBS) 40$(OBJDIR)/sudoku.elf: $(OBJS) $(LINKFILE) $(BITMAPLIBS)
41 $(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \ 41 $(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \
42 $(LINKBITMAPS) -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/sudoku.map 42 $(LINKBITMAPS) -T$(LINKFILE) -Wl,--gc-sections -Wl,-Map,$(OBJDIR)/sudoku.map
43 43
44$(OUTPUT): $(OBJDIR)/sudoku.elf 44$(OUTPUT): $(OBJDIR)/sudoku.elf
45 $(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@ 45 $(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@