mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
25 lines
375 B
Makefile
25 lines
375 B
Makefile
MODULE = cpu
|
|
|
|
DIRS += periph
|
|
DIRS += vfs
|
|
|
|
ifneq (,$(filter netdev_tap,$(USEMODULE)))
|
|
DIRS += netdev_tap
|
|
endif
|
|
|
|
ifneq (,$(filter socket_zep,$(USEMODULE)))
|
|
DIRS += socket_zep
|
|
endif
|
|
|
|
ifneq (,$(filter mtd_native,$(USEMODULE)))
|
|
DIRS += mtd
|
|
endif
|
|
|
|
ifneq (,$(filter can_linux,$(USEMODULE)))
|
|
DIRS += can
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
INCLUDES = $(NATIVEINCLUDES)
|