blob: dbae38e1dd6107d04dc88e443a21f95640d44fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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)
|