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

14 lines
342 B
Makefile
Raw Normal View History

export NATIVEINCLUDES += -I$(RIOTCPU)/native/include -I$(RIOTBASE)/sys/include
# Local include for OSX
ifeq ($(BUILDOSXNATIVE),1)
export NATIVEINCLUDES += -I$(RIOTCPU)/native/osx-libc-extra
endif
2017-10-20 00:17:53 +02:00
USEMODULE += periph
USEMODULE += periph_uart
2014-11-28 12:14:54 +01:00
ifeq ($(shell uname -s),Darwin)
export CFLAGS += -D_XOPEN_SOURCE=600 -D_DARWIN_C_SOURCE
2014-11-28 12:14:54 +01:00
endif