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/Makefile | |
| 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/Makefile')
| -rw-r--r-- | apps/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile index 04e0e87..0c888a1 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -30,8 +30,8 @@ DEFINES = $(DEBUG) DIRS = . ifdef APPEXTRA - DIRS += $(APPEXTRA) - INCLUDES += -I$(APPEXTRA) + DIRS += $(subst :, ,$(APPEXTRA)) + INCLUDES += $(patsubst %,-I%,$(subst :, ,$(APPEXTRA))) endif CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(DEFINES) \ |