mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 03:32:49 +01:00
99ff9bad03
Updating the Makefiles for example and test applications to set the TERMFLAGS correctly for native.
18 lines
357 B
Makefile
18 lines
357 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += test_utils_result_output
|
|
USEMODULE += shell
|
|
|
|
ifeq (native, $(BOARD))
|
|
RIOT_TERMINAL ?= native
|
|
endif
|
|
|
|
# Use a terminal that does not introduce extra characters into the stream.
|
|
RIOT_TERMINAL ?= socat
|
|
|
|
ifndef CONFIG_SHELL_NO_ECHO
|
|
CFLAGS += -DCONFIG_SHELL_NO_ECHO=1
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.include
|