blob: 51fe2e2d0c06d9abbf78c4f3ef45b11b5af8d2e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# List of the ChibiOS e200z0 SPC560Bxx startup files.
STARTUPSRC =
STARTUPASM = $(CHIBIOS)/os/common/startup/e200/devices/SPC560Bxx/boot_ghs.s \
$(CHIBIOS)/os/common/startup/e200/compilers/GHS/vectors.s \
$(CHIBIOS)/os/common/startup/e200/compilers/GHS/crt0.s
STARTUPINC = ${CHIBIOS}/os/common/startup/e200/compilers/GHS \
${CHIBIOS}/os/common/startup/e200/devices/SPC560Bxx
STARTUPLD = ${CHIBIOS}/os/common/startup/e200/compilers/GHS/ld
# Shared variables
ALLASMSRC += $(STARTUPASM)
ALLCSRC += $(STARTUPSRC)
ALLINC += $(STARTUPINC)
|