File tree Expand file tree Collapse file tree 5 files changed +32
-5
lines changed Expand file tree Collapse file tree 5 files changed +32
-5
lines changed Original file line number Diff line number Diff line change 85
85
* > \author Univ. of Colorado Denver
86
86
* > \author NAG Ltd.
87
87
*
88
+ * > This implementation of CLARTG has been deprecated with LAPACKv3.10.
89
+ * > A better version of CLARTG was contributed by Ed Anderson and released in 3.10.
90
+ *
88
91
* > \ingroup complexOTHERauxiliary
89
92
*
90
93
* > \par Further Details:
Original file line number Diff line number Diff line change 90
90
* > \author Univ. of Colorado Denver
91
91
* > \author NAG Ltd.
92
92
*
93
+ * > This implementation of DLARTG has been deprecated with LAPACKv3.10.
94
+ * > A better version of DLARTG was contributed by Ed Anderson and released in 3.10.
95
+ *
93
96
* > \ingroup OTHERauxiliary
94
97
*
95
98
* =====================================================================
Original file line number Diff line number Diff line change 90
90
* > \author Univ. of Colorado Denver
91
91
* > \author NAG Ltd.
92
92
*
93
+ * > This implementation of SLARTG has been deprecated with LAPACKv3.10.
94
+ * > A better version of SLARTG was contributed by Ed Anderson and released in 3.10.
95
+ *
93
96
* > \ingroup OTHERauxiliary
94
97
*
95
98
* =====================================================================
Original file line number Diff line number Diff line change 85
85
* > \author Univ. of Colorado Denver
86
86
* > \author NAG Ltd.
87
87
*
88
+ * > This implementation of ZLARTG has been deprecated with LAPACKv3.10.
89
+ * > A better version of ZLARTG was contributed by Ed Anderson and released in 3.10.
90
+ *
88
91
* > \ingroup complex16OTHERauxiliary
89
92
*
90
93
* > \par Further Details:
Original file line number Diff line number Diff line change 57
57
TOPSRCDIR = ..
58
58
include $(TOPSRCDIR ) /make.inc
59
59
60
- .SUFFIXES : .F .f90 .o
61
- .F.o :
60
+ ALLMOD = la_constants.mod la_constants32.mod
61
+
62
+ .SUFFIXES : .f .F .f90 .F90 .o .mod
63
+ % .o : % .f $(ALLMOD )
62
64
$(FC ) $(FFLAGS ) -c -o $@ $<
63
- .f90.o :
65
+ % .o : % .F $( ALLMOD )
64
66
$(FC ) $(FFLAGS ) -c -o $@ $<
65
-
67
+ % .o : % .f90 $(ALLMOD )
68
+ $(FC ) $(FFLAGS ) -c -o $@ $<
69
+ % .o : % .F90 $(ALLMOD )
70
+ $(FC ) $(FFLAGS ) -c -o $@ $<
71
+ .o.mod :
72
+ @true
73
+
66
74
ALLAUX = ilaenv.o ilaenv2stage.o ieeeck.o lsamen.o xerbla.o xerbla_array.o \
67
75
iparmq.o iparam2stage.o \
68
76
ilaprec.o ilatrans.o ilauplo.o iladiag.o chla_transtype.o \
@@ -612,7 +620,7 @@ endif
612
620
.PHONY : clean cleanobj cleanlib
613
621
clean : cleanobj cleanlib
614
622
cleanobj :
615
- rm -f * .o DEPRECATED/* .o
623
+ rm -f * .o * .mod DEPRECATED/* .o DEPRECATED/ * .mod
616
624
cleanlib :
617
625
rm -f $(LAPACKLIB )
618
626
@@ -622,3 +630,10 @@ sla_wwaddw.o: sla_wwaddw.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
622
630
dla_wwaddw.o : dla_wwaddw.f ; $(FC ) $(FFLAGS_NOOPT ) -c -o $@ $<
623
631
cla_wwaddw.o : cla_wwaddw.f ; $(FC ) $(FFLAGS_NOOPT ) -c -o $@ $<
624
632
zla_wwaddw.o : zla_wwaddw.f ; $(FC ) $(FFLAGS_NOOPT ) -c -o $@ $<
633
+
634
+ # Modules
635
+ la_constants32.o : la_constants32.f90
636
+ $(FC ) $(FFLAGS ) -c -o $@ $<
637
+ la_constants.o : la_constants.f90
638
+ $(FC ) $(FFLAGS ) -c -o $@ $<
639
+
You can’t perform that action at this time.
0 commit comments