mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
337 B
Makefile
15 lines
337 B
Makefile
export PROJECT = test_pthread
|
|
include ../Makefile.tests_common
|
|
|
|
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
|