10 lines
185 B
Makefile
10 lines
185 B
Makefile
MODULE = cpu_common
|
|
DIRS = periph
|
|
|
|
# build one of the radio drivers, if enabled
|
|
ifneq (,$(filter nrfmin,$(USEMODULE)))
|
|
DIRS += radio/nrfmin
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|