From 420085d7a5ba67bf8e60cd45783eec1e1ef02bb0 Mon Sep 17 00:00:00 2001 From: julie Date: Mon, 26 Sep 2011 21:52:31 +0000 Subject: [PATCH] Add the LAPACK library as dependencies for testing after Igor's comment. This means that if you change one file, all testings will be rerun. Should we be smarter than that? --- TESTING/EIG/Makefile | 8 ++++---- TESTING/LIN/Makefile | 20 ++++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/TESTING/EIG/Makefile b/TESTING/EIG/Makefile index 4a83863e1..48e43c9f7 100644 --- a/TESTING/EIG/Makefile +++ b/TESTING/EIG/Makefile @@ -126,22 +126,22 @@ complex: ../xeigtstc double: ../xeigtstd complex16: ../xeigtstz -../xeigtsts: $(SEIGTST) $(SCIGTST) $(AEIGTST) ; \ +../xeigtsts: $(SEIGTST) $(SCIGTST) $(AEIGTST) ../../$(LAPACKLIB); \ $(LOADER) $(LOADOPTS) -o xeigtsts \ $(SEIGTST) $(SCIGTST) $(AEIGTST) ../../$(TMGLIB) \ ../../$(LAPACKLIB) $(BLASLIB) && mv xeigtsts $@ -../xeigtstc: $(CEIGTST) $(SCIGTST) $(AEIGTST) ; \ +../xeigtstc: $(CEIGTST) $(SCIGTST) $(AEIGTST) ../../$(LAPACKLIB); \ $(LOADER) $(LOADOPTS) -o xeigtstc \ $(CEIGTST) $(SCIGTST) $(AEIGTST) ../../$(TMGLIB) \ ../../$(LAPACKLIB) $(BLASLIB) && mv xeigtstc $@ -../xeigtstd: $(DEIGTST) $(DZIGTST) $(AEIGTST) ; \ +../xeigtstd: $(DEIGTST) $(DZIGTST) $(AEIGTST) ../../$(LAPACKLIB); \ $(LOADER) $(LOADOPTS) -o xeigtstd \ $(DEIGTST) $(DZIGTST) $(AEIGTST) ../../$(TMGLIB) \ ../../$(LAPACKLIB) $(BLASLIB) && mv xeigtstd $@ -../xeigtstz: $(ZEIGTST) $(DZIGTST) $(AEIGTST) ; \ +../xeigtstz: $(ZEIGTST) $(DZIGTST) $(AEIGTST) ../../$(LAPACKLIB); \ $(LOADER) $(LOADOPTS) -o xeigtstz \ $(ZEIGTST) $(DZIGTST) $(AEIGTST) ../../$(TMGLIB) \ ../../$(LAPACKLIB) $(BLASLIB) && mv xeigtstz $@ diff --git a/TESTING/LIN/Makefile b/TESTING/LIN/Makefile index 38b522f41..4e531708b 100644 --- a/TESTING/LIN/Makefile +++ b/TESTING/LIN/Makefile @@ -241,43 +241,43 @@ proto-double: ../xlintstds ../xlintstrfd proto-complex: ../xlintstrfc proto-complex16: ../xlintstzc ../xlintstrfz -../xlintsts : $(ALINTST) $(SLINTST) $(SCLNTST) +../xlintsts : $(ALINTST) $(SLINTST) $(SCLNTST) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(ALINTST) $(SCLNTST) $(SLINTST) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(XBLASLIB) $(BLASLIB) -o xlintsts && mv xlintsts $@ -../xlintstc : $(ALINTST) $(CLINTST) $(SCLNTST) +../xlintstc : $(ALINTST) $(CLINTST) $(SCLNTST) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(ALINTST) $(SCLNTST) $(CLINTST) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(XBLASLIB) $(BLASLIB) -o xlintstc && mv xlintstc $@ -../xlintstd : $(ALINTST) $(DLINTST) $(DZLNTST) +../xlintstd : $(ALINTST) $(DLINTST) $(DZLNTST) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $^ \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(XBLASLIB) $(BLASLIB) -o xlintstd && mv xlintstd $@ -../xlintstz : $(ALINTST) $(ZLINTST) $(DZLNTST) +../xlintstz : $(ALINTST) $(ZLINTST) $(DZLNTST) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(ALINTST) $(DZLNTST) $(ZLINTST) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(XBLASLIB) $(BLASLIB) -o xlintstz && mv xlintstz $@ -../xlintstds : $(DSLINTST) +../xlintstds : $(DSLINTST) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(DSLINTST) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB) -o xlintstds && mv xlintstds $@ -../xlintstzc : $(ZCLINTST) +../xlintstzc : $(ZCLINTST) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(ZCLINTST) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB) -o xlintstzc && mv xlintstzc $@ -../xlintstrfs : $(SLINTSTRFP) +../xlintstrfs : $(SLINTSTRFP) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(SLINTSTRFP) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB) -o xlintstrfs && mv xlintstrfs $@ -../xlintstrfd : $(DLINTSTRFP) +../xlintstrfd : $(DLINTSTRFP) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(DLINTSTRFP) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB) -o xlintstrfd && mv xlintstrfd $@ -../xlintstrfc : $(CLINTSTRFP) +../xlintstrfc : $(CLINTSTRFP) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(CLINTSTRFP) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB) -o xlintstrfc && mv xlintstrfc $@ -../xlintstrfz : $(ZLINTSTRFP) +../xlintstrfz : $(ZLINTSTRFP) ../../$(LAPACKLIB) $(LOADER) $(LOADOPTS) $(ZLINTSTRFP) \ ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB) -o xlintstrfz && mv xlintstrfz $@