You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
388 B
Makefile
17 lines
388 B
Makefile
# name of your application
|
|
APPLICATION = pthread_barrier
|
|
include ../Makefile.tests_common
|
|
|
|
BOARD_BLACKLIST := arduino-mega2560
|
|
# arduino-mega2560: unknown type name: clockid_t
|
|
|
|
# exclude boards with insufficient memory
|
|
BOARD_INSUFFICIENT_MEMORY := stm32f0discovery
|
|
|
|
# Modules to include.
|
|
USEMODULE += pthread
|
|
USEMODULE += random
|
|
USEMODULE += xtimer
|
|
|
|
include $(RIOTBASE)/Makefile.include
|