summaryrefslogtreecommitdiff
path: root/TESTING/EIG/Makefile
diff options
context:
space:
mode:
authorKyle Guinn <elyk03@gmail.com>2017-02-05 02:54:37 -0600
committerKyle Guinn <elyk03@gmail.com>2017-02-05 02:54:37 -0600
commit9746cd7d826ce0dac6638d366c32d99b0a8700b6 (patch)
tree400b43fb391be2d796a4b28eeb42c1fb6cdb01e5 /TESTING/EIG/Makefile
parent7fb9b8f128e78c385be3751712ba68c390796920 (diff)
downloadlapack-9746cd7d826ce0dac6638d366c32d99b0a8700b6.tar.gz
lapack-9746cd7d826ce0dac6638d366c32d99b0a8700b6.tar.bz2
lapack-9746cd7d826ce0dac6638d366c32d99b0a8700b6.zip
Fix missing or unnecessary prerequisites
Diffstat (limited to 'TESTING/EIG/Makefile')
-rw-r--r--TESTING/EIG/Makefile19
1 files changed, 9 insertions, 10 deletions
diff --git a/TESTING/EIG/Makefile b/TESTING/EIG/Makefile
index 80d8bd2e..a614ee02 100644
--- a/TESTING/EIG/Makefile
+++ b/TESTING/EIG/Makefile
@@ -23,7 +23,6 @@ include ../../make.inc
# without any arguments creates all four test programs.
# The executable files are called
# xeigtsts, xeigtstd, xeigtstc, and xeigtstz
-# and are created in the next higher directory level.
#
# To remove the object files after the executable files have been
# created, enter
@@ -120,21 +119,21 @@ ZEIGTST = zchkee.o \
all: single complex double complex16
-single: ../xeigtsts
-complex: ../xeigtstc
-double: ../xeigtstd
-complex16: ../xeigtstz
+single: xeigtsts
+complex: xeigtstc
+double: xeigtstd
+complex16: xeigtstz
-../xeigtsts: $(SEIGTST) $(SCIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
+xeigtsts: $(SEIGTST) $(SCIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
$(LOADER) $(LOADOPTS) -o $@ $^
-../xeigtstc: $(CEIGTST) $(SCIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
+xeigtstc: $(CEIGTST) $(SCIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
$(LOADER) $(LOADOPTS) -o $@ $^
-../xeigtstd: $(DEIGTST) $(DZIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
+xeigtstd: $(DEIGTST) $(DZIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
$(LOADER) $(LOADOPTS) -o $@ $^
-../xeigtstz: $(ZEIGTST) $(DZIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
+xeigtstz: $(ZEIGTST) $(DZIGTST) $(AEIGTST) ../../$(TMGLIB) ../../$(LAPACKLIB) $(BLASLIB)
$(LOADER) $(LOADOPTS) -o $@ $^
$(AEIGTST): $(FRC)
@@ -149,7 +148,7 @@ FRC:
@FRC=$(FRC)
clean:
- rm -f *.o
+ rm -f *.o xeigtst*
schkee.o: schkee.f
$(FORTRAN) $(DRVOPTS) -c -o $@ $<