blob: f67db416fac5668f70eca33bd08beb64e02a1064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# List of the ChibiOS generic SAMA5D2 file.
STARTUPSRC = $(CHIBIOS)/os/common/startup/ARMCAx-TZ/compilers/GCC/crt1.c \
$(CHIBIOS)/os/common/startup/ARMCAx-TZ/devices/SAMA5D2/mmu.c
STARTUPASM = $(CHIBIOS)/os/common/startup/ARMCAx-TZ/devices/SAMA5D2/boot.S \
$(CHIBIOS)/os/common/startup/ARMCAx-TZ/compilers/GCC/vectors.S \
$(CHIBIOS)/os/common/startup/ARMCAx-TZ/compilers/GCC/crt0.S
STARTUPINC = $(CHIBIOS)/os/common/portability/GCC \
${CHIBIOS}/os/common/startup/ARMCAx-TZ/devices/SAMA5D2 \
$(CHIBIOS)/os/common/ext/ARM/CMSIS/Core_A/Include \
$(CHIBIOS)/os/common/portability/GCC
STARTUPLD = ${CHIBIOS}/os/common/startup/ARMCAx-TZ/compilers/GCC/ld
# Shared variables
ALLXASMSRC += $(STARTUPASM)
ALLCSRC += $(STARTUPSRC)
ALLINC += $(STARTUPINC)
|