[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/454.calculix/Makefile
Bill Wendling
isanbard at gmail.com
Wed Sep 27 14:57:31 PDT 2006
Changes in directory llvm-test/External/SPEC/CFP2006/454.calculix:
Makefile updated: 1.3 -> 1.4
---
Log message:
Was outputing the wrong filename. Needed to have the correct recipe for some of
the files.
---
Diffs of the changes: (+11 -3)
Makefile | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
Index: llvm-test/External/SPEC/CFP2006/454.calculix/Makefile
diff -u llvm-test/External/SPEC/CFP2006/454.calculix/Makefile:1.3 llvm-test/External/SPEC/CFP2006/454.calculix/Makefile:1.4
--- llvm-test/External/SPEC/CFP2006/454.calculix/Makefile:1.3 Thu Sep 7 19:59:14 2006
+++ llvm-test/External/SPEC/CFP2006/454.calculix/Makefile Wed Sep 27 16:57:16 2006
@@ -241,15 +241,20 @@
-I$(SPEC_BENCH_DIR)/src \
-I$(SPEC_BENCH_DIR)/src/include
+NAGFORTRAN_FLAGS += \
+ -I$(SPEC_BENCH_DIR)/src \
+ -I$(SPEC_BENCH_DIR)/src/SPOOLES \
+ -maxcontin=256
+
include ../../Makefile.spec2006
include $(PROJ_SRC_ROOT)/Makefile.FORTRAN
ifeq ($(RUN_TYPE),test)
RUN_OPTIONS := -i beampic
- STDOUT_FILENAME := beampic.log
+ STDOUT_FILENAME := beampic.dat
else
RUN_OPTIONS := -i stairs
- STDOUT_FILENAME := stairs.log
+ STDOUT_FILENAME := stairs.dat
endif
##===----------------------------------------------------------------------===##
@@ -282,6 +287,9 @@
$(addprefix dstree_,$(notdir $(DSTREESources))) : dstree_% : \
$(SPEC_BENCH_DIR)/src/SPOOLES/DSTree/src/%
cp $< $@
+$(addprefix dv_,$(notdir $(DVSources))) : dv_% : \
+$(SPEC_BENCH_DIR)/src/SPOOLES/DV/src/%
+ cp $< $@
$(addprefix dmtx_,$(notdir $(DENSEMTXSources))) : dmtx_% : \
$(SPEC_BENCH_DIR)/src/SPOOLES/DenseMtx/src/%
cp $< $@
@@ -312,7 +320,7 @@
$(addprefix ivl_,$(notdir $(IVLSources))) : ivl_% : \
$(SPEC_BENCH_DIR)/src/SPOOLES/IVL/src/%
cp $< $@
-$(addprefix ideq_,$(notdir $(IEQSources))) : ideq_% : \
+$(addprefix ideq_,$(notdir $(IDEQSources))) : ideq_% : \
$(SPEC_BENCH_DIR)/src/SPOOLES/Ideq/src/%
cp $< $@
$(addprefix inpmtx_,$(notdir $(INPMTXSources))) : inpmtx_% : \
More information about the llvm-commits
mailing list