mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
427 B
Makefile
18 lines
427 B
Makefile
DEVELHELP ?= 0
|
|
include ../Makefile.tests_common
|
|
|
|
CFLAGS += -DNDEBUG -DLOG_LEVEL=LOG_NONE
|
|
|
|
DISABLE_MODULE += auto_init auto_init_%
|
|
DISABLE_MODULE += test_utils_interactive_sync
|
|
DISABLE_MODULE += test_utils_print_stack_usage
|
|
|
|
USEMODULE += stdio_null
|
|
|
|
# adjust stack sizes to very small values
|
|
ifneq (native,$(BOARD))
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=256 -DTHREAD_STACKSIZE_IDLE=128
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.include
|