From da882fcb89080b41486efe06dede6b733b7a7f9e Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Mon, 23 Jan 2006 01:56:43 +0000 Subject: bmp2rb build system optimisation - only build the necessary libraries for the target. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8422 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/Makefile | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'apps/plugins') diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 04bb62fbe3..ca3b51482c 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -21,13 +21,24 @@ ifdef SOFTWARECODECS endif # Set up the bitmap libraries -BITMAPLIBS = $(BUILDDIR)/libpluginbitmapsmono.a \ - $(BUILDDIR)/libpluginbitmapsnative.a \ - $(BUILDDIR)/libpluginbitmapsremotemono.a \ - $(BUILDDIR)/libpluginbitmapsremotenative.a - -LINKBITMAPS = -lpluginbitmapsmono -lpluginbitmapsnative \ - -lpluginbitmapsremotemono -lpluginbitmapsremotenative +BITMAPLIBS = +LINKBITMAPS = +ifneq ($(strip $(BMP2RB_MONO)),) + BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsmono.a + LINKBITMAPS += -lpluginbitmapsmono +endif +ifneq ($(strip $(BMP2RB_NATIVE)),) + BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsnative.a + LINKBITMAPS += -lpluginbitmapsnative +endif +ifneq ($(strip $(BMP2RB_REMOTEMONO)),) + BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsremotemono.a + LINKBITMAPS += -lpluginbitmapsremotemono +endif +ifneq ($(strip $(BMP2RB_REMOTENATIVE)),) + BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsremotenative.a + LINKBITMAPS += -lpluginbitmapsremotenative +endif LDS := plugin.lds LINKFILE := $(OBJDIR)/pluginlink.lds -- cgit v1.2.3