1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/tinyusb/hw/Makefile

10 lines
152 B
Makefile
Raw Normal View History

MODULE = tinyusb_hw
ifneq (,$(filter saml21 samd5x samd21,$(CPU)))
SRC = hw_sam0.c
else
SRC = hw_$(CPU).c
endif
include $(RIOTBASE)/Makefile.base