diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-08 13:12:16 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-08 13:12:16 +0000 |
| commit | e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171 (patch) | |
| tree | af8a0d5c7140cbe5e61fae39f4e98b6e6dff3673 /apps/plugins/lib | |
| parent | 5fd97fa2e971562f24d6e0b61148eb3c35753c74 (diff) | |
| download | rockbox-e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171.zip rockbox-e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171.tar.gz rockbox-e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171.tar.bz2 rockbox-e7bb8c04287ec8baf6f89dd4f169b00ccb7d7171.tar.xz | |
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')
| -rw-r--r-- | apps/plugins/lib/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile index dcab0ad..df527d8 100644 --- a/apps/plugins/lib/Makefile +++ b/apps/plugins/lib/Makefile @@ -23,12 +23,19 @@ endif FIRMWARE = ../../../firmware +# Check if this is a kind of Recorder +ANYREC = $(findstring RECORDER, $(TARGET)) + # ../.. for the plugin.h in the apps dir # .. for stuff in the plugins dir # . for stuff in the pluginlib dir INCLUDES=-I../.. -I.. -I. -I$(FIRMWARE)/include -I$(FIRMWARE)/export \ -I$(FIRMWARE)/common -I$(FIRMWARE)/drivers +ifeq ($(ANYREC), RECORDER) +INCLUDES += -I../../recorder +endif + ifdef SIMULATOR CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \ $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR |