[llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT95/132.ijpeg/Makefile
Alkis Evlogimenos
alkis at cs.uiuc.edu
Sun Mar 7 19:50:09 PST 2004
Changes in directory llvm/test/Programs/External/SPEC/CINT95/132.ijpeg:
Makefile updated: 1.3 -> 1.4
---
Log message:
Make benchmark work with both test and train inputs
---
Diffs of the changes: (+8 -4)
Index: llvm/test/Programs/External/SPEC/CINT95/132.ijpeg/Makefile
diff -u llvm/test/Programs/External/SPEC/CINT95/132.ijpeg/Makefile:1.3 llvm/test/Programs/External/SPEC/CINT95/132.ijpeg/Makefile:1.4
--- llvm/test/Programs/External/SPEC/CINT95/132.ijpeg/Makefile:1.3 Tue Feb 10 17:01:55 2004
+++ llvm/test/Programs/External/SPEC/CINT95/132.ijpeg/Makefile Fri Mar 5 21:53:04 2004
@@ -1,7 +1,12 @@
LEVEL = ../../../../../..
-STDIN_FILENAME := specmun.ppm
-STDOUT_FILENAME := specmun.out
-RUN_OPTIONS := -image_file specmun.ppm -compression.quality 90 -compression.optimize_coding 0 -compression.smoothing_factor 90 -difference.image 1 -difference.x_stride 10 -difference.y_stride 10 -verbose 1 -GO.findoptcomp
+ifeq ($(RUN_TYPE),test)
+FILENAME := specmun
+else
+FILENAME := vigo
+endif
+
+STDOUT_FILENAME := $(FILENAME).out
+RUN_OPTIONS := -image_file $(FILENAME).ppm -compression.quality 90 -compression.optimize_coding 0 -compression.smoothing_factor 90 -difference.image 1 -difference.x_stride 10 -difference.y_stride 10 -verbose 1 -GO.findoptcomp
# This line nukes the __const's found in /usr/include/stdio.h that prevent the
# extern char * sys_errlist variable from linking properly.
@@ -9,4 +14,3 @@
Source=libpbm1.c libpbm2.c libpbm3.c libpbm4.c libpbm5.c libpgm1.c libpgm2.c libppm1.c libppm2.c libppm3.c libppm4.c libppm5.c spec_image.c spec_jmemdst.c spec_jmemsrc.c spec_main.c rdppm.c wrppm.c rdgif.c wrgif.c rdtarga.c wrtarga.c rdbmp.c wrbmp.c jcapi.c jcparam.c jdatadst.c jcmaster.c jcmarker.c jcmainct.c jcprepct.c jccoefct.c jccolor.c jcsample.c jchuff.c jcdctmgr.c jfdctfst.c jfdctflt.c jfdctint.c jdapi.c jdatasrc.c jdmaster.c jdmarker.c jdmainct.c jdcoefct.c jdpostct.c jddctmgr.c jidctfst.c jidctflt.c jidctint.c jidctred.c jdhuff.c jdsample.c jdcolor.c jquant1.c jquant2.c jdmerge.c jcomapi.c jutils.c jerror.c jmemmgr.c jmemnobs.c
include ../../Makefile.spec95
-
More information about the llvm-commits
mailing list