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

39 lines
648 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
2019-10-18 08:23:02 +02:00
ifeq ($(OS),Darwin)
CFLAGS += -D_XOPEN_SOURCE=600 -D_DARWIN_C_SOURCE
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
ifneq (,$(filter can_linux,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += can
endif
2020-06-04 14:37:01 +02:00
ifneq (,$(filter backtrace,$(USEMODULE)))
DIRS += backtrace
endif
2013-03-12 16:03:37 +01:00
include $(RIOTBASE)/Makefile.base
INCLUDES = $(NATIVEINCLUDES)