forked from len0rd/rockbox
Added the apps/recorder dir to the include path for recorder builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4853 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5fd97fa2e9
commit
e7bb8c0428
2 changed files with 14 additions and 0 deletions
|
@ -12,11 +12,18 @@ OC = sh-elf-objcopy
|
||||||
|
|
||||||
FIRMWARE = ../../firmware
|
FIRMWARE = ../../firmware
|
||||||
|
|
||||||
|
# Check if this is a kind of Recorder
|
||||||
|
ANYREC = $(findstring RECORDER, $(TARGET))
|
||||||
|
|
||||||
INCLUDES = -I$(FIRMWARE)/include -I$(FIRMWARE)/export -I$(FIRMWARE)/common \
|
INCLUDES = -I$(FIRMWARE)/include -I$(FIRMWARE)/export -I$(FIRMWARE)/common \
|
||||||
-I$(FIRMWARE)/drivers -I.. -Ilib
|
-I$(FIRMWARE)/drivers -I.. -Ilib
|
||||||
CFLAGS = -O -W -Wall -m1 -nostdlib -ffreestanding -Wstrict-prototypes \
|
CFLAGS = -O -W -Wall -m1 -nostdlib -ffreestanding -Wstrict-prototypes \
|
||||||
$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEM} -DPLUGIN
|
$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEM} -DPLUGIN
|
||||||
|
|
||||||
|
ifeq ($(ANYREC), RECORDER)
|
||||||
|
INCLUDES += -I../recorder
|
||||||
|
endif
|
||||||
|
|
||||||
LDS := plugin.lds
|
LDS := plugin.lds
|
||||||
LINKFILE := $(OBJDIR)/pluginlink.lds
|
LINKFILE := $(OBJDIR)/pluginlink.lds
|
||||||
|
|
||||||
|
|
|
@ -23,12 +23,19 @@ endif
|
||||||
|
|
||||||
FIRMWARE = ../../../firmware
|
FIRMWARE = ../../../firmware
|
||||||
|
|
||||||
|
# Check if this is a kind of Recorder
|
||||||
|
ANYREC = $(findstring RECORDER, $(TARGET))
|
||||||
|
|
||||||
# ../.. for the plugin.h in the apps dir
|
# ../.. for the plugin.h in the apps dir
|
||||||
# .. for stuff in the plugins dir
|
# .. for stuff in the plugins dir
|
||||||
# . for stuff in the pluginlib dir
|
# . for stuff in the pluginlib dir
|
||||||
INCLUDES=-I../.. -I.. -I. -I$(FIRMWARE)/include -I$(FIRMWARE)/export \
|
INCLUDES=-I../.. -I.. -I. -I$(FIRMWARE)/include -I$(FIRMWARE)/export \
|
||||||
-I$(FIRMWARE)/common -I$(FIRMWARE)/drivers
|
-I$(FIRMWARE)/common -I$(FIRMWARE)/drivers
|
||||||
|
|
||||||
|
ifeq ($(ANYREC), RECORDER)
|
||||||
|
INCLUDES += -I../../recorder
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef SIMULATOR
|
ifdef SIMULATOR
|
||||||
CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \
|
CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \
|
||||||
$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR
|
$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue