1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/samd21/vectors/Makefile
2020-12-11 18:25:36 +01:00

16 lines
275 B
Makefile

MODULE = samd21_vectors
NO_AUTO_SRC = 1
ifneq (,$(filter samd1%,$(CPU_MODEL)))
SRC_FILE = vectors_samd1x.c
else
SRC_FILE = vectors_samd2x.c
endif
SRCS += $(SRC_FILE)
# (file triggers compiler bug. see #5775)
SRC_NOLTO += $(SRC_FILE)
include $(RIOTBASE)/Makefile.base