You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
420 B
Makefile
15 lines
420 B
Makefile
# List of the ChibiOS ARMv7-M sandbox host files.
|
|
SBHOSTSRC = $(CHIBIOS)/os/sb/host/sbhost.c \
|
|
$(CHIBIOS)/os/sb/host/sbapi.c \
|
|
$(CHIBIOS)/os/sb/host/sbposix.c
|
|
|
|
SBHOSTASM = $(CHIBIOS)/os/sb/host/compilers/GCC/sbexc.S
|
|
|
|
SBHOSTINC = $(CHIBIOS)/os/sb/common \
|
|
$(CHIBIOS)/os/sb/host
|
|
|
|
# Shared variables
|
|
ALLXASMSRC += $(SBHOSTASM)
|
|
ALLCSRC += $(SBHOSTSRC)
|
|
ALLINC += $(SBHOSTINC)
|