diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-05-12 08:47:26 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-05-12 08:47:26 +0000 |
commit | 4f0b993b4416e13f480ff4b4249244d3b2ac861b (patch) | |
tree | 29ca151f93627eabdfdcd4bf577eb43d91a4ae40 /demos/ARMCM3-STM32F103-G++/Makefile | |
parent | fde582b119c3c1f7c780b9b1e9fc9a0954588ca3 (diff) | |
download | ChibiOS-4f0b993b4416e13f480ff4b4249244d3b2ac861b.tar.gz ChibiOS-4f0b993b4416e13f480ff4b4249244d3b2ac861b.tar.bz2 ChibiOS-4f0b993b4416e13f480ff4b4249244d3b2ac861b.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5728 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARMCM3-STM32F103-G++/Makefile')
-rw-r--r-- | demos/ARMCM3-STM32F103-G++/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/ARMCM3-STM32F103-G++/Makefile b/demos/ARMCM3-STM32F103-G++/Makefile index 0556e9719..f7a72b5d6 100644 --- a/demos/ARMCM3-STM32F103-G++/Makefile +++ b/demos/ARMCM3-STM32F103-G++/Makefile @@ -64,6 +64,7 @@ include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32F1xx/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
@@ -82,7 +83,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
@@ -109,6 +111,7 @@ ASMSRC = $(PORTASM) INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
$(HALINC) $(PLATFORMINC) $(BOARDINC) \
+ $(CHCPPINC) \
$(CHIBIOS)/os/various
#
|