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

16 lines
330 B
Makefile
Raw Normal View History

MODULE = cpu_common
DIRS = periph
ifneq (,$(filter nrf_shared_serial_irq,$(USEMODULE)))
DIRS += shared_irq
endif
# build one of the radio drivers, if enabled
2018-04-05 10:58:52 +02:00
ifneq (,$(filter nrfble,$(USEMODULE)))
DIRS += radio/nrfble
endif
ifneq (,$(filter nrfmin,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += radio/nrfmin
endif
include $(RIOTBASE)/Makefile.base