blob: c56557197c37c4aaebf76fa48ff481019f9ff583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SRC_SUPERVISOR = \
main.c \
supervisor/port.c \
supervisor/shared/autoreload.c \
supervisor/shared/rgb_led_status.c
ifeq ($(wildcard atmel-samd/supervisor/filesystem.c),)
SRC_SUPERVISOR += supervisor/filesystem.c
else
SRC_SUPERVISOR += supervisor/stub/filesystem.c
endif
ifeq ($(wildcard atmel-samd/supervisor/serial.c),)
SRC_SUPERVISOR += supervisor/serial.c
else
SRC_SUPERVISOR += supervisor/stub/serial.c
endif
SUPERVISOR_O = $(addprefix $(BUILD)/, $(SRC_SUPERVISOR:.c=.o))
|