17 lines
611 B
Makefile
17 lines
611 B
Makefile
# List of the ChibiOS e200z4 SPC564Axx startup files.
|
|
STARTUPSRC =
|
|
|
|
STARTUPASM = $(CHIBIOS)/os/common/startup/e200/devices/SPC564Axx/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/SPC564Axx
|
|
|
|
STARTUPLD = ${CHIBIOS}/os/common/startup/e200/compilers/GHS/ld
|
|
|
|
# Shared variables
|
|
ALLASMSRC += $(STARTUPASM)
|
|
ALLCSRC += $(STARTUPSRC)
|
|
ALLINC += $(STARTUPINC)
|