2013-03-06 01:08:15 +01:00
|
|
|
MODULE = cpu
|
|
|
|
|
2014-10-18 10:47:26 +02:00
|
|
|
DIRS += periph
|
2020-08-10 14:45:39 +02:00
|
|
|
|
|
|
|
ifneq (,$(filter native_vfs,$(USEMODULE)))
|
|
|
|
DIRS += vfs
|
|
|
|
endif
|
2015-08-06 12:12:47 +02:00
|
|
|
|
2017-02-15 13:07:34 +01:00
|
|
|
ifneq (,$(filter netdev_tap,$(USEMODULE)))
|
2017-09-21 15:20:30 +02:00
|
|
|
DIRS += netdev_tap
|
2015-05-19 09:50:29 +02:00
|
|
|
endif
|
2016-10-28 15:21:08 +02:00
|
|
|
|
|
|
|
ifneq (,$(filter socket_zep,$(USEMODULE)))
|
|
|
|
DIRS += socket_zep
|
|
|
|
endif
|
|
|
|
|
2019-12-18 11:56:23 +01:00
|
|
|
ifneq (,$(filter stdio_native,$(USEMODULE)))
|
|
|
|
DIRS += stdio_native
|
|
|
|
endif
|
|
|
|
|
2016-07-11 09:53:13 +02:00
|
|
|
ifneq (,$(filter mtd_native,$(USEMODULE)))
|
2017-09-21 15:20:30 +02:00
|
|
|
DIRS += mtd
|
2016-07-11 09:53:13 +02:00
|
|
|
endif
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2023-02-24 21:29:06 +01:00
|
|
|
ifneq (,$(filter fs_native,$(USEMODULE)))
|
|
|
|
DIRS += fs
|
|
|
|
endif
|
|
|
|
|
2020-06-04 14:37:01 +02:00
|
|
|
ifneq (,$(filter backtrace,$(USEMODULE)))
|
|
|
|
DIRS += backtrace
|
2017-06-16 13:30:59 +02:00
|
|
|
endif
|
2016-11-23 19:06:59 +01:00
|
|
|
|
2020-12-04 14:34:08 +01:00
|
|
|
ifneq (,$(filter native_cli_eui_provider,$(USEMODULE)))
|
|
|
|
DIRS += cli_eui_provider
|
|
|
|
endif
|
|
|
|
|
2013-03-12 16:03:37 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|
2018-04-12 17:48:07 +02:00
|
|
|
|
|
|
|
INCLUDES = $(NATIVEINCLUDES)
|