[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
    Chris Lattner 
    lattner at cs.uiuc.edu
       
    Wed May 14 14:01:00 PDT 2003
    
    
  
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.49 -> 1.50
---
Log message:
Add new .exe targets for nightly tester
---
Diffs of the changes:
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.49 llvm/test/Programs/Makefile.programs:1.50
--- llvm/test/Programs/Makefile.programs:1.49	Wed May 14 12:51:27 2003
+++ llvm/test/Programs/Makefile.programs	Wed May 14 14:00:19 2003
@@ -272,6 +272,24 @@
 Output/%.diff-cbe: Output/%.out-nat Output/%.out-cbe
 	$(DIFFPROG) cbe $* $(HIDEDIFF)
 
+ifndef DISABLE_DIFFS
+$(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \
+Output/%.exe-lli: Output/%.diff-lli
+	-cp $< $@
+
+$(PROGRAMS_TO_TEST:%=Output/%.exe-jit): \
+Output/%.exe-jit: Output/%.diff-jit
+	-cp $< $@
+
+$(PROGRAMS_TO_TEST:%=Output/%.exe-llc): \
+Output/%.exe-llc: Output/%.diff-llc
+	-cp $< $@
+
+$(PROGRAMS_TO_TEST:%=Output/%.exe-cbe): \
+Output/%.exe-cbe: Output/%.diff-cbe
+	-cp $< $@
+endif
+
 # Rules to support the USE_PRECOMPILED_BYTECODE setting If set, submakefiles
 # will not know how to make output bytecode files for the programs in this
 # directory.  Instead, this makefile just copies them out of the bytecode
    
    
More information about the llvm-commits
mailing list