mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 03:23:49 +01:00
10 lines
152 B
Makefile
10 lines
152 B
Makefile
MODULE = tinyusb_hw
|
|
|
|
ifneq (,$(filter saml21 samd5x samd21,$(CPU)))
|
|
SRC = hw_sam0.c
|
|
else
|
|
SRC = hw_$(CPU).c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|