[llvm-commits] [test-suite] r92244 - in /test-suite/trunk/MultiSource: Applications/JM/ldecod/Makefile Applications/JM/lencod/Makefile Applications/kimwitu++/Makefile Benchmarks/MiBench/consumer-typeset/Makefile Benchmarks/mafft/Makefile Benchmarks/mediabench/mpeg2/mpeg2dec/Makefile

Daniel Dunbar daniel at zuster.org
Mon Dec 28 20:30:02 PST 2009


Author: ddunbar
Date: Mon Dec 28 22:30:01 2009
New Revision: 92244

URL: http://llvm.org/viewvc/llvm-project?rev=92244&view=rev
Log:
Update Makefiles to clean up temp files.

Modified:
    test-suite/trunk/MultiSource/Applications/JM/ldecod/Makefile
    test-suite/trunk/MultiSource/Applications/JM/lencod/Makefile
    test-suite/trunk/MultiSource/Applications/kimwitu++/Makefile
    test-suite/trunk/MultiSource/Benchmarks/MiBench/consumer-typeset/Makefile
    test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile
    test-suite/trunk/MultiSource/Benchmarks/mediabench/mpeg2/mpeg2dec/Makefile

Modified: test-suite/trunk/MultiSource/Applications/JM/ldecod/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/JM/ldecod/Makefile?rev=92244&r1=92243&r2=92244&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Applications/JM/ldecod/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/JM/ldecod/Makefile Mon Dec 28 22:30:01 2009
@@ -6,3 +6,6 @@
 RUN_OPTIONS = -i $(PROJ_SRC_DIR)/data/test.264 -o Output/test_dec.yuv -r $(PROJ_SRC_DIR)/data/test_rec.yuv
 
 include ../../../Makefile.multisrc
+
+clean::
+	rm -f dataDec.txt log.dec

Modified: test-suite/trunk/MultiSource/Applications/JM/lencod/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/JM/lencod/Makefile?rev=92244&r1=92243&r2=92244&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Applications/JM/lencod/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/JM/lencod/Makefile Mon Dec 28 22:30:01 2009
@@ -11,3 +11,6 @@
 endif
 
 include ../../../Makefile.multisrc
+
+clean::
+	rm -f data.txt log.dat stats.dat

Modified: test-suite/trunk/MultiSource/Applications/kimwitu++/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/kimwitu%2B%2B/Makefile?rev=92244&r1=92243&r2=92244&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Applications/kimwitu++/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/kimwitu++/Makefile Mon Dec 28 22:30:01 2009
@@ -6,3 +6,5 @@
 RUN_OPTIONS = -f test  -o -v -s kcc $(PROJ_SRC_DIR)/inputs/f3.k $(PROJ_SRC_DIR)/inputs/f2.k $(PROJ_SRC_DIR)/inputs/f1.k
 include ../../Makefile.multisrc
 
+clean::
+	rm -f *.kcc f1.h f2.h f3.h test*.h

Modified: test-suite/trunk/MultiSource/Benchmarks/MiBench/consumer-typeset/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/MiBench/consumer-typeset/Makefile?rev=92244&r1=92243&r2=92244&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/MiBench/consumer-typeset/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/MiBench/consumer-typeset/Makefile Mon Dec 28 22:30:01 2009
@@ -5,3 +5,6 @@
 LDFLAGS  = -lm
 RUN_OPTIONS = -x -I $(PROJ_SRC_DIR)/data/include -D $(PROJ_SRC_DIR)/data/data -F $(PROJ_SRC_DIR)/data/font -C $(PROJ_SRC_DIR)/data/maps -H $(PROJ_SRC_DIR)/data/hyph $(PROJ_SRC_DIR)/large.lout
 include $(LEVEL)/MultiSource/Makefile.multisrc
+
+clean::
+	rm -f $(PROJ_SRC_DIR)/data/hyph/*.lp

Modified: test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile?rev=92244&r1=92243&r2=92244&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile Mon Dec 28 22:30:01 2009
@@ -12,3 +12,6 @@
 LDFLAGS = -lm
 FP_TOLERANCE = 0.00001
 include $(LEVEL)/MultiSource/Makefile.multisrc
+
+clean::
+	rm -f pre hat2 trace

Modified: test-suite/trunk/MultiSource/Benchmarks/mediabench/mpeg2/mpeg2dec/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/mediabench/mpeg2/mpeg2dec/Makefile?rev=92244&r1=92243&r2=92244&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/mediabench/mpeg2/mpeg2dec/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/mediabench/mpeg2/mpeg2dec/Makefile Mon Dec 28 22:30:01 2009
@@ -12,5 +12,5 @@
 
 include $(LEVEL)/MultiSource/Makefile.multisrc
 
-
-
+clean::
+	rm -f $(SourceDir)/../data/tmp*





More information about the llvm-commits mailing list