summaryrefslogtreecommitdiff
path: root/firmware/firmware.make
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-12-04 17:06:17 +0100
committerThomas Martitz <kugel@rockbox.org>2014-03-03 18:11:57 +0100
commit382d1861af12741af4ff235b9d18f179c0adc4c5 (patch)
tree26166c130d2889bb1ae1082e8f7aba103534f49e /firmware/firmware.make
parent8bae5f2644b5d5759499fbf1066b9c35c6f859ad (diff)
downloadrockbox-382d1861af12741af4ff235b9d18f179c0adc4c5.tar.gz
rockbox-382d1861af12741af4ff235b9d18f179c0adc4c5.zip
kernel: Break out kernel primitives into separate files and move to separate dir.
No code changed, just shuffling stuff around. This should make it easier to build only select parts kernel and use different implementations. Change-Id: Ie1f00f93008833ce38419d760afd70062c5e22b5
Diffstat (limited to 'firmware/firmware.make')
-rw-r--r--firmware/firmware.make3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/firmware.make b/firmware/firmware.make
index 570087bf45..8e2d475683 100644
--- a/firmware/firmware.make
+++ b/firmware/firmware.make
@@ -7,7 +7,8 @@
7# $Id$ 7# $Id$
8# 8#
9 9
10INCLUDES += -I$(FIRMDIR) -I$(FIRMDIR)/export -I$(FIRMDIR)/drivers -I$(FIRMDIR)/include 10INCLUDES += -I$(FIRMDIR) -I$(FIRMDIR)/export -I$(FIRMDIR)/drivers \
11 -I$(FIRMDIR)/include -I$(FIRMDIR)/kernel/include
11ifndef APP_TYPE 12ifndef APP_TYPE
12INCLUDES += -I$(FIRMDIR)/libc/include 13INCLUDES += -I$(FIRMDIR)/libc/include
13endif 14endif