filtered out -fopenmp and fix for mingw
This commit is contained in:
parent
7c2c488c23
commit
1153e3ac39
|
@ -14,8 +14,9 @@ lib: lapacklib tmglib
|
|||
clean: cleanlib cleantesting cleanblas_testing cleancblas_testing
|
||||
|
||||
lapack_install:
|
||||
( cd INSTALL; $(MAKE); ./testlsame; ./testslamch; ./testdlamch; \
|
||||
./testsecond; ./testdsecnd; ./testieee; ./testversion )
|
||||
( cd INSTALL; $(MAKE) )
|
||||
# ./testlsame; ./testslamch; ./testdlamch; \
|
||||
# ./testsecond; ./testdsecnd; ./testieee; ./testversion )
|
||||
|
||||
blaslib:
|
||||
( cd BLAS/SRC; $(MAKE) )
|
||||
|
@ -126,3 +127,4 @@ cleantesting:
|
|||
|
||||
cleanall: cleanlib cleanblas_testing cleancblas_testing cleantesting
|
||||
rm -f *.a TESTING/*.out INSTALL/test* BLAS/*.out
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ ZLASRC = $(filter-out $(ZLAPACKOBJS),$(ZLASRC_O))
|
|||
DSLASRC = $(filter-out $(SLAPACKOBJS),$(DSLASRC_O))
|
||||
ZCLASRC = $(filter-out $(CLAPACKOBJS),$(ZCLASRC_O))
|
||||
|
||||
OPTS1 = $(filter-out -fopenmp, $(OPTS))
|
||||
#end filter out
|
||||
|
||||
|
||||
|
@ -588,10 +589,10 @@ clean:
|
|||
rm -f *.o DEPRECATED/*.o
|
||||
|
||||
.f.o:
|
||||
$(FORTRAN) $(OPTS) -c -o $@ $<
|
||||
$(FORTRAN) $(OPTS1) -c -o $@ $<
|
||||
|
||||
.F.o:
|
||||
$(FORTRAN) $(OPTS) -c $< -o $@
|
||||
$(FORTRAN) $(OPTS1) -c $< -o $@
|
||||
|
||||
slaruv.o: slaruv.f ; $(FORTRAN) $(NOOPT) -c -o $@ $<
|
||||
dlaruv.o: dlaruv.f ; $(FORTRAN) $(NOOPT) -c -o $@ $<
|
||||
|
|
Loading…
Reference in New Issue