18 lines
660 B
Makefile
18 lines
660 B
Makefile
# List of the ChibiOS e200z4 SPC564Axx startup files.
|
|
STARTUPSRC =
|
|
|
|
STARTUPASM = $(CHIBIOS)/os/common/startup/e200/devices/SPC564Axx/boot.S \
|
|
$(CHIBIOS)/os/common/startup/e200/compilers/GCC/vectors.S \
|
|
$(CHIBIOS)/os/common/startup/e200/compilers/GCC/crt0.S
|
|
|
|
STARTUPINC = $(CHIBIOS)/os/common/portability/GCC \
|
|
${CHIBIOS}/os/common/startup/e200/compilers/GCC \
|
|
${CHIBIOS}/os/common/startup/e200/devices/SPC564Axx
|
|
|
|
STARTUPLD = ${CHIBIOS}/os/common/startup/e200/compilers/GCC/ld
|
|
|
|
# Shared variables
|
|
ALLXASMSRC += $(STARTUPASM)
|
|
ALLCSRC += $(STARTUPSRC)
|
|
ALLINC += $(STARTUPINC)
|