mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
341 B
Makefile
14 lines
341 B
Makefile
|
include ../Makefile.tests_common
|
||
|
|
||
|
USEPKG += lua
|
||
|
|
||
|
BOARD_WHITELIST += native samr21-xpro
|
||
|
|
||
|
ifneq ($(BOARD),native)
|
||
|
# This stack size is large enough to run Lua print() functions of
|
||
|
# various lengths. Other functions untested.
|
||
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN='(THREAD_STACKSIZE_DEFAULT+2048)'
|
||
|
endif
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.include
|