[llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile

Alkis Evlogimenos alkis at cs.uiuc.edu
Sun Feb 29 19:31:01 PST 2004


Changes in directory llvm/test/Programs/External/SPEC/CINT95/124.m88ksim:

Makefile updated: 1.3 -> 1.4

---
Log message:

Make this work with both train inputs.


---
Diffs of the changes:  (+10 -2)

Index: llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile
diff -u llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile:1.3 llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile:1.4
--- llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile:1.3	Fri Feb 13 15:59:15 2004
+++ llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile	Sun Feb 29 19:30:43 2004
@@ -1,10 +1,18 @@
 LEVEL = ../../../../../..
 RUN_OPTIONS = -c
+
 ifeq ($(ENDIAN),big)
-STDIN_FILENAME := ctl.big
+EXTENSION := big
 else
-STDIN_FILENAME := ctl.lit
+EXTENSION := lit
 endif
+
+ifeq ($(RUN_TYPE),test)
+STDIN_FILENAME := ctl.$(EXTENSION)
+else
+STDIN_FILENAME := dcrand.$(EXTENSION)
+endif
+
 STDOUT_FILENAME := test.out
 
 Source := addd.c \





More information about the llvm-commits mailing list