Simplified DOTRACING flag.
authorVikram S. Adve <vadve@cs.uiuc.edu>
Tue, 8 Jul 2003 23:40:48 +0000 (23:40 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Tue, 8 Jul 2003 23:40:48 +0000 (23:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7135 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile.tests

index c4e7090687b882f035bd6b82d663b9990566a795..b9040bc5dc6524b542a6ee8060d974b765b50739 100644 (file)
@@ -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