aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-14 16:17:07 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-14 16:17:07 +0000
commit50708b39516b77397dc76195ab963aa5909e48b0 (patch)
treec4ce436f7333ac9cd80a4e1b67ebda97f4275eed
parentff9e21bc296c075bdbf4873c5f9b19d3f4c7f57c (diff)
downloadChibiOS-50708b39516b77397dc76195ab963aa5909e48b0.tar.gz
ChibiOS-50708b39516b77397dc76195ab963aa5909e48b0.tar.bz2
ChibiOS-50708b39516b77397dc76195ab963aa5909e48b0.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@764 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--readme.txt2
-rw-r--r--src/kernel.mk3
-rw-r--r--test/test.mk3
3 files changed, 7 insertions, 1 deletions
diff --git a/readme.txt b/readme.txt
index c4c30f823..d14a92d3d 100644
--- a/readme.txt
+++ b/readme.txt
@@ -123,7 +123,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
CH_IRQ_PROLOGUE() and CH_IRQ_EPILOGUE() in order to make very clear that
those are not functions but inlined code. Also introduced a new macro
CH_IRQ_HANDLER that should be used when declaring an interrupt handler.
- CHANGE: Renamed several internal initialization functions by removing the
+- CHANGE: Renamed several internal initialization functions by removing the
"ch" prefix because could not be considered system APIs.
- Improved ARM7 and Cortex-M3 support, new configuration options.
- Introduced the concept of interrupt classes, see the documentation.
diff --git a/src/kernel.mk b/src/kernel.mk
index 2a178897b..9f18bcec6 100644
--- a/src/kernel.mk
+++ b/src/kernel.mk
@@ -8,3 +8,6 @@ KERNSRC = ../../src/chsys.c ../../src/chdebug.c \
../../src/chmsg.c ../../src/chqueues.c \
../../src/chheap.c ../../src/chmempools.c \
../../src/chserial.c
+
+# Required include directories
+KERNINC = ../../src/include
diff --git a/test/test.mk b/test/test.mk
index 9677d21dc..100b3d0ed 100644
--- a/test/test.mk
+++ b/test/test.mk
@@ -3,3 +3,6 @@ TESTSRC = ../../test/test.c ../../test/testrdy.c ../../test/testsem.c \
../../test/testmtx.c ../../test/testcond.c ../../test/testmsg.c \
../../test/testevt.c ../../test/testheap.c ../../test/testpools.c \
../../test/testdyn.c ../../test/testbmk.c
+
+# Required include directories
+TESTINC = ../../test