summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-07-08 23:40:48 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-07-08 23:40:48 +0000
commit781128c4f9463771032fc5e27977820761ec8260 (patch)
treec9b4a332b1f1203dd4ce084c59a09f40a7abb818 /test/Makefile.tests
parent0b459204afc597e424d6c2fe78782669ca73bdc9 (diff)
downloadllvm-781128c4f9463771032fc5e27977820761ec8260.tar.gz
llvm-781128c4f9463771032fc5e27977820761ec8260.tar.bz2
llvm-781128c4f9463771032fc5e27977820761ec8260.tar.xz
Simplified DOTRACING flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index c4e7090687..b9040bc5dc 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -65,6 +65,7 @@ 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 =
+DOTRACING =
ifeq ($(TRACE), yes)
TRACEFLAGS += -trace
DOTRACING = yes
@@ -74,7 +75,7 @@ else
DOTRACING = yes
endif
endif
-ifeq ($(DOTRACING), yes)
+ifdef DOTRACING
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
endif