mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5811c847ad
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
16 lines
330 B
Makefile
16 lines
330 B
Makefile
MODULE = cpu_common
|
|
DIRS = periph
|
|
|
|
ifneq (,$(filter nrf_shared_serial_irq,$(USEMODULE)))
|
|
DIRS += shared_irq
|
|
endif
|
|
# build one of the radio drivers, if enabled
|
|
ifneq (,$(filter nrfble,$(USEMODULE)))
|
|
DIRS += radio/nrfble
|
|
endif
|
|
ifneq (,$(filter nrfmin,$(USEMODULE)))
|
|
DIRS += radio/nrfmin
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|