mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
226 B
Makefile
15 lines
226 B
Makefile
MODULE = cpu
|
|
|
|
DIRS += periph
|
|
DIRS += drivers
|
|
ifneq (,$(filter rtc,$(USEMODULE)))
|
|
DIRS += rtc
|
|
endif
|
|
ifneq (,$(filter nativenet,$(USEMODULE)))
|
|
DIRS += net
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
INCLUDES = $(NATIVEINCLUDES)
|