summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/Makefile
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-08 13:12:16 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-08 13:12:16 +0000
commite7bb8c04287ec8baf6f89dd4f169b00ccb7d7171 (patch)
treeaf8a0d5c7140cbe5e61fae39f4e98b6e6dff3673 /apps/plugins/lib/Makefile
parent5fd97fa2e971562f24d6e0b61148eb3c35753c74 (diff)
downloadrockbox-e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171.tar.gz
rockbox-e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171.zip
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
Diffstat (limited to 'apps/plugins/lib/Makefile')
-rw-r--r--apps/plugins/lib/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile
index dcab0ad749..df527d84f2 100644
--- a/apps/plugins/lib/Makefile
+++ b/apps/plugins/lib/Makefile
@@ -23,12 +23,19 @@ endif
23 23
24FIRMWARE = ../../../firmware 24FIRMWARE = ../../../firmware
25 25
26# Check if this is a kind of Recorder
27ANYREC = $(findstring RECORDER, $(TARGET))
28
26# ../.. for the plugin.h in the apps dir 29# ../.. for the plugin.h in the apps dir
27# .. for stuff in the plugins dir 30# .. for stuff in the plugins dir
28# . for stuff in the pluginlib dir 31# . for stuff in the pluginlib dir
29INCLUDES=-I../.. -I.. -I. -I$(FIRMWARE)/include -I$(FIRMWARE)/export \ 32INCLUDES=-I../.. -I.. -I. -I$(FIRMWARE)/include -I$(FIRMWARE)/export \
30 -I$(FIRMWARE)/common -I$(FIRMWARE)/drivers 33 -I$(FIRMWARE)/common -I$(FIRMWARE)/drivers
31 34
35ifeq ($(ANYREC), RECORDER)
36INCLUDES += -I../../recorder
37endif
38
32ifdef SIMULATOR 39ifdef SIMULATOR
33CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \ 40CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \
34$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR 41$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR