Skip to content
Snippets Groups Projects
Unverified Commit 3b119cc5 authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

boards/native: unexport TERM* variables

TERMPROG and TERMFLAGS variables do not need to be exported as they are
used directly by a make receipe.
parent 20ce4db7
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ else
export DEBUGGER ?= gdb
endif
export TERMPROG ?= $(ELFFILE)
TERMPROG ?= $(ELFFILE)
export FLASHER = true
export VALGRIND ?= valgrind
export CGANNOTATE ?= cg_annotate
......@@ -100,7 +100,7 @@ else
export PORT =
endif
export TERMFLAGS := $(PORT) $(TERMFLAGS)
TERMFLAGS := $(PORT) $(TERMFLAGS)
export ASFLAGS =
ifeq ($(shell basename $(DEBUGGER)),lldb)
......@@ -117,7 +117,7 @@ debug-valgrind-server: export VALGRIND_FLAGS ?= --vgdb=yes --vgdb-error=0 -v \
--leak-check=full --track-origins=yes --fullpath-after=$(RIOTBASE) \
--read-var-info=yes
term-cachegrind: export CACHEGRIND_FLAGS += --tool=cachegrind
term-gprof: export TERMPROG = GMON_OUT_PREFIX=gmon.out $(ELFFILE)
term-gprof: TERMPROG = GMON_OUT_PREFIX=gmon.out $(ELFFILE)
all-valgrind: export CFLAGS += -DHAVE_VALGRIND_H -g
all-valgrind: export NATIVEINCLUDES += $(shell pkg-config valgrind --cflags)
all-debug: export CFLAGS += -g
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment