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

18 lines
427 B
Makefile
Raw Normal View History

DEVELHELP ?= 0
include ../Makefile.tests_common
2015-07-12 13:06:39 +02:00
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
2015-07-12 13:06:39 +02:00
2019-11-19 18:27:57 +01:00
USEMODULE += stdio_null
# adjust stack sizes to very small values
ifneq (native,$(BOARD))
CFLAGS += -DTHREAD_STACKSIZE_MAIN=256 -DTHREAD_STACKSIZE_IDLE=128
endif
2015-07-12 13:06:39 +02:00
include $(RIOTBASE)/Makefile.include