[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
Chris Lattner
lattner at cs.uiuc.edu
Wed May 14 12:56:32 PDT 2003
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.48 -> 1.49
---
Log message:
Add new DISABLE_DIFFS option
---
Diffs of the changes:
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.48 llvm/test/Programs/Makefile.programs:1.49
--- llvm/test/Programs/Makefile.programs:1.48 Tue May 13 17:18:19 2003
+++ llvm/test/Programs/Makefile.programs Wed May 14 12:51:27 2003
@@ -113,10 +113,7 @@
all:: $(BYTECODE)
ifdef RUN_GCC_ONLY
-DISABLE_LLC = 1
-DISABLE_CBE = 1
-DISABLE_JIT = 1
-ENABLE_LLI =
+DISABLE_DIFFS = 1
all:: $(GCCOUTPUT)
endif
@@ -126,16 +123,17 @@
DISABLE_LLC_DIFFS = 1
endif
-ifndef DISABLE_LLC_DIFFS
-all:: $(LLCDIFFS)
-endif
-
ifndef DISABLE_CBE
all:: $(CBECODEGEN)
else
DISABLE_CBE_DIFFS = 1
endif
+ifndef DISABLE_DIFFS
+ifndef DISABLE_LLC_DIFFS
+all:: $(LLCDIFFS)
+endif
+
ifndef DISABLE_CBE_DIFFS
all:: $(CBEDIFFS)
endif
@@ -148,6 +146,7 @@
ifdef ENABLE_LLI
all:: $(LLIDIFFS)
+endif
endif
# Given a version of the entire program linked together into a single unit of
More information about the llvm-commits
mailing list