summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-03-07 12:45:45 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-03-07 12:45:45 +0000
commiteed02bebcdc921557bebcc20221c112d41263ffe (patch)
tree754650cad62fc03c3c8d43421793e682635f3b66 /firmware/Makefile
parent3de0db0c3b0c2010ffb5c5884e8ec5ec260091d6 (diff)
downloadrockbox-eed02bebcdc921557bebcc20221c112d41263ffe.tar.gz
rockbox-eed02bebcdc921557bebcc20221c112d41263ffe.zip
Add the target directory tree to the include path, and set the TARGET_TREE macro for the targets that use it
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8945 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 41485da861..a35a1205b6 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -7,7 +7,7 @@
7# $Id$ 7# $Id$
8# 8#
9 9
10INCLUDES=-Iinclude -I$(FIRMDIR) -Iexport -Icommon -Idrivers -I$(BUILDDIR) 10INCLUDES=$(TARGET_INC) -Iinclude -I$(FIRMDIR) -Iexport -Icommon -Idrivers -I$(BUILDDIR)
11 11
12CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET) $(BUILDDATE) $(EXTRA_DEFINES) \ 12CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET) $(BUILDDATE) $(EXTRA_DEFINES) \
13 -DMEM=${MEMORYSIZE} 13 -DMEM=${MEMORYSIZE}