summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 91e466912d..6293946b9a 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -65,12 +65,13 @@ CP = /bin/cp -f
## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
## mark that tracing on, and set the TRACELIBS variable.
+TRACEFLAGS =
ifeq ($(TRACE), yes)
- LLCFLAGS += -trace
+ TRACEFLAGS += -trace
DOTRACING = yes
else
ifeq ($(TRACEM), yes)
- LLCFLAGS += -tracem
+ TRACEFLAGS += -tracem
DOTRACING = yes
endif
endif