1
0
Fork 0
forked from len0rd/rockbox

Support for a colon-separated path in APPEXTRA

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7663 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-10-27 14:39:00 +00:00
parent d1dc0bd824
commit dc9e201671
18 changed files with 21 additions and 21 deletions

View file

@ -22,8 +22,8 @@ SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARG
DIRS = .
ifdef APPEXTRA
DIRS += $(APPEXTRA)
INCLUDES += -I$(APPEXTRA)
DIRS += $(subst :, ,$(APPEXTRA))
INCLUDES += $(patsubst %,-I%,$(subst :, ,$(APPEXTRA)))
endif
CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(DEFINES) \