mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 14:32:43 +01:00
16 lines
279 B
Makefile
16 lines
279 B
Makefile
|
MODULE = boards_common_silabs
|
||
|
|
||
|
ifneq (,$(filter silabs_aem,$(USEMODULE)))
|
||
|
DIRS += drivers/aem
|
||
|
endif
|
||
|
|
||
|
ifneq (,$(filter silabs_bc,$(USEMODULE)))
|
||
|
DIRS += drivers/bc
|
||
|
endif
|
||
|
|
||
|
ifneq (,$(filter silabs_pic,$(USEMODULE)))
|
||
|
DIRS += drivers/pic
|
||
|
endif
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.base
|