diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-21 12:54:54 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-21 12:54:54 +0000 |
commit | 10465f72389fe8ed965b4e07fbb5b8ffe26af9a4 (patch) | |
tree | 8cde360454ae4325b0f7b61d12e747d90adab0b4 /os/common/startup/ARM | |
parent | c010f378caa66e18145d94e35a7123e9209f46d1 (diff) | |
download | ChibiOS-10465f72389fe8ed965b4e07fbb5b8ffe26af9a4.tar.gz ChibiOS-10465f72389fe8ed965b4e07fbb5b8ffe26af9a4.tar.bz2 ChibiOS-10465f72389fe8ed965b4e07fbb5b8ffe26af9a4.zip |
Improved make system.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11049 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/startup/ARM')
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk | 5 | ||||
-rwxr-xr-x | os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk b/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk index 04611a33f..fb5b3fd69 100644 --- a/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk +++ b/os/common/startup/ARM/compilers/GCC/mk/startup_lpc214x.mk @@ -7,3 +7,8 @@ STARTUPASM = $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/vectors.S \ STARTUPINC = ${CHIBIOS}/os/common/startup/ARM/devices/LPC214x
STARTUPLD = ${CHIBIOS}/os/common/startup/ARM/compilers/GCC/ld
+
+# Shared variables
+ALLASM += $(STARTUPASM)
+ALLCSRC += $(STARTUPSRC)
+ALLINC += $(STARTUPINC)
diff --git a/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk b/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk index 8ffb23281..269aad0b9 100755 --- a/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk +++ b/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk @@ -9,3 +9,8 @@ STARTUPINC = ${CHIBIOS}/os/common/startup/ARM/devices/SAMA5D2 \ $(CHIBIOS)/os/common/ext/ARM/CMSIS/Core_A/Include
STARTUPLD = ${CHIBIOS}/os/common/startup/ARM/compilers/GCC/ld
+
+# Shared variables
+ALLASM += $(STARTUPASM)
+ALLCSRC += $(STARTUPSRC)
+ALLINC += $(STARTUPINC)
|