RIOT/cpu/native/Makefile
Gaëtan Harter 40c28d78c0 Revert "native: remove non required NATIVEINCLUDES"
This reverts commit 93a521c50132e24558e42bc57dcf9c94051f07e3.
2018-04-12 17:48:07 +02:00

32 lines
524 B
Makefile

MODULE = cpu
DIRS += periph
DIRS += vfs
ifeq ($(shell uname -s),Darwin)
CFLAGS += -D_XOPEN_SOURCE=600 -D_DARWIN_C_SOURCE
endif
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
ifneq (,$(filter trace,$(USEMODULE)))
DIRS += trace
endif
include $(RIOTBASE)/Makefile.base
INCLUDES = $(NATIVEINCLUDES)