aboutsummaryrefslogtreecommitdiffstats
path: root/demos/ARM7-LPC214x-G++/Makefile
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-05-19 09:38:56 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-05-19 09:38:56 +0000
commitedbb1137a3651757e2722a143e60f0a8375e2201 (patch)
tree783fe57209b37d6bf912436f54b5d84f2f1ab3d5 /demos/ARM7-LPC214x-G++/Makefile
parent071dd3e06c505d46b9332b7be1390b9003952e82 (diff)
downloadChibiOS-edbb1137a3651757e2722a143e60f0a8375e2201.tar.gz
ChibiOS-edbb1137a3651757e2722a143e60f0a8375e2201.tar.bz2
ChibiOS-edbb1137a3651757e2722a143e60f0a8375e2201.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5745 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-G++/Makefile')
-rw-r--r--demos/ARM7-LPC214x-G++/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/ARM7-LPC214x-G++/Makefile b/demos/ARM7-LPC214x-G++/Makefile
index 67b294b7c..95a64eb8c 100644
--- a/demos/ARM7-LPC214x-G++/Makefile
+++ b/demos/ARM7-LPC214x-G++/Makefile
@@ -51,6 +51,7 @@ include $(CHIBIOS)/os/hal/platforms/LPC214x/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARM/LPC214x/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
+include $(CHIBIOS)/os/various/cpp_wrappers/kernel.mk
include $(CHIBIOS)/test/test.mk
# Define linker script file here
@@ -68,7 +69,8 @@ CSRC = $(PORTSRC) \
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
-CPPSRC = $(CHIBIOS)/os/various/ch.cpp main.cpp
+CPPSRC = $(CHCPPSRC) \
+ main.cpp
# C sources to be compiled in ARM mode regardless of the global setting.
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
@@ -95,6 +97,7 @@ ASMSRC = $(PORTASM)
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
$(HALINC) $(PLATFORMINC) $(BOARDINC) \
+ $(CHCPPINC) \
$(CHIBIOS)/os/various
#