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

15 lines
337 B
Makefile
Raw Normal View History

2014-02-13 14:18:30 +01:00
export PROJECT = test_pthread
include ../Makefile.tests_common
2014-02-13 14:18:30 +01:00
USEMODULE += posix
USEMODULE += pthread
ifeq ($(BOARD),native)
CFLAGS += -isystem $(RIOTBASE)/sys/posix/pthread/include
else
export INCLUDES += -I$(RIOTBASE)/sys/posix/pthread/include \
-I$(RIOTBASE)/sys/posix/include
endif
include $(RIOTBASE)/Makefile.include