diff options
author | Kyle Guinn <elyk03@gmail.com> | 2017-01-22 18:05:07 -0600 |
---|---|---|
committer | Kyle Guinn <elyk03@gmail.com> | 2017-01-22 18:05:07 -0600 |
commit | ca854db888f6407dc3e6617ca1d99e59110df870 (patch) | |
tree | dac7cf6ca2cff847fe5f8f2b23b9189c858345ab /Makefile | |
parent | 0d8eb20739a7397e7fc801f743385456ccf4290c (diff) | |
download | lapack-ca854db888f6407dc3e6617ca1d99e59110df870.tar.gz lapack-ca854db888f6407dc3e6617ca1d99e59110df870.tar.bz2 lapack-ca854db888f6407dc3e6617ca1d99e59110df870.zip |
Move some rules to INSTALL/Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,8 +14,7 @@ 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) run ) blaslib: ( cd BLAS/SRC; $(MAKE) ) @@ -125,4 +124,5 @@ cleantesting: ( cd TESTING; rm -f xlin* xeig* ) cleanall: cleanlib cleanblas_testing cleancblas_testing cleantesting - rm -f *.a TESTING/*.out INSTALL/test* BLAS/*.out + ( cd INSTALL; $(MAKE) cleanall ) + rm -f *.a TESTING/*.out BLAS/*.out |