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

40 lines
660 B
Makefile
Raw Normal View History

2013-03-06 01:08:15 +01:00
MODULE = cpu
2014-10-18 10:47:26 +02:00
DIRS += periph
ifneq (,$(filter native_vfs,$(USEMODULE)))
DIRS += vfs
endif
ifneq (,$(filter netdev_tap,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += netdev_tap
endif
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
ifneq (,$(filter mtd_native,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += mtd
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
endif
ifneq (,$(filter native_cli_eui_provider,$(USEMODULE)))
DIRS += cli_eui_provider
endif
2013-03-12 16:03:37 +01:00
include $(RIOTBASE)/Makefile.base
INCLUDES = $(NATIVEINCLUDES)