diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-10-27 14:39:00 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-10-27 14:39:00 +0000 |
| commit | dc9e201671f8d36da9b7b7fe87ff55e96295c71b (patch) | |
| tree | 3e0397b3a8008f987c3249eb1a69bc6c07b1f72a /apps/plugins | |
| parent | d1dc0bd8241bcefc776f92e855a0e15e0b734a62 (diff) | |
| download | rockbox-dc9e201671f8d36da9b7b7fe87ff55e96295c71b.zip rockbox-dc9e201671f8d36da9b7b7fe87ff55e96295c71b.tar.gz rockbox-dc9e201671f8d36da9b7b7fe87ff55e96295c71b.tar.bz2 rockbox-dc9e201671f8d36da9b7b7fe87ff55e96295c71b.tar.xz | |
Support for a colon-separated path in APPEXTRA
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7663 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/Makefile | 2 | ||||
| -rw-r--r-- | apps/plugins/databox/Makefile | 2 | ||||
| -rw-r--r-- | apps/plugins/lib/Makefile | 2 | ||||
| -rw-r--r-- | apps/plugins/rockboy/Makefile | 2 | ||||
| -rw-r--r-- | apps/plugins/searchengine/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index c7aa438..ec75876 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -13,7 +13,7 @@ CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) \ -DMEM=${MEMORYSIZE} -DPLUGIN ifdef APPEXTRA - INCLUDES += -I$(APPSDIR)/$(APPEXTRA) + INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA))) endif ifdef SOFTWARECODECS diff --git a/apps/plugins/databox/Makefile b/apps/plugins/databox/Makefile index a8a6baa..12b211d 100644 --- a/apps/plugins/databox/Makefile +++ b/apps/plugins/databox/Makefile @@ -13,7 +13,7 @@ CFLAGS = $(GCCOPTS) -O3 $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) \ -DMEM=${MEMORYSIZE} -DPLUGIN ifdef APPEXTRA - INCLUDES += -I$(APPSDIR)/$(APPEXTRA) + INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA))) endif LINKFILE := $(OBJDIR)/link.lds diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile index 7eddccd..9b4b0b6 100644 --- a/apps/plugins/lib/Makefile +++ b/apps/plugins/lib/Makefile @@ -14,7 +14,7 @@ INCLUDES=-I$(APPSDIR) -I.. -I. -I$(FIRMDIR)/include -I$(FIRMDIR)/export \ -I$(FIRMDIR)/common -I$(FIRMDIR)/drivers -I$(BUILDDIR) ifdef APPEXTRA -INCLUDES += -I$(APPSDIR)/$(APPEXTRA) + INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA))) endif CFLAGS = $(GCCOPTS) \ diff --git a/apps/plugins/rockboy/Makefile b/apps/plugins/rockboy/Makefile index 1d32e0a..23c6142 100644 --- a/apps/plugins/rockboy/Makefile +++ b/apps/plugins/rockboy/Makefile @@ -13,7 +13,7 @@ CFLAGS = $(GCCOPTS) -O3 $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) \ -DMEM=${MEMORYSIZE} -DPLUGIN ifdef APPEXTRA - INCLUDES += -I$(APPSDIR)/$(APPEXTRA) + INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA))) endif LINKFILE := $(OBJDIR)/link.lds diff --git a/apps/plugins/searchengine/Makefile b/apps/plugins/searchengine/Makefile index 992beb0..26e8517 100644 --- a/apps/plugins/searchengine/Makefile +++ b/apps/plugins/searchengine/Makefile @@ -13,7 +13,7 @@ CFLAGS = $(GCCOPTS) -O3 $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) \ -DMEM=${MEMORYSIZE} -DPLUGIN ifdef APPEXTRA - INCLUDES += -I$(APPSDIR)/$(APPEXTRA) + INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA))) endif LINKFILE := $(OBJDIR)/link.lds |