mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
35b5e2556e
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
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
|