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 /INSTALL | |
parent | 0d8eb20739a7397e7fc801f743385456ccf4290c (diff) | |
download | lapack-ca854db888f6407dc3e6617ca1d99e59110df870.tar.gz lapack-ca854db888f6407dc3e6617ca1d99e59110df870.tar.bz2 lapack-ca854db888f6407dc3e6617ca1d99e59110df870.zip |
Move some rules to INSTALL/Makefile
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL/Makefile | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/INSTALL/Makefile b/INSTALL/Makefile index 15f5252b..51b15de6 100644 --- a/INSTALL/Makefile +++ b/INSTALL/Makefile @@ -1,8 +1,12 @@ include ../make.inc -.SUFFIXES: .o .f all: testlsame testslamch testdlamch testsecond testdsecnd testieee testversion +clean: + rm -f *.o +cleanall: + rm -f test* + testlsame: lsame.o lsametst.o $(LOADER) $(LOADOPTS) -o $@ lsame.o lsametst.o @@ -26,8 +30,16 @@ testieee: tstiee.o testversion: ilaver.o LAPACK_version.o $(LOADER) $(LOADOPTS) -o $@ ilaver.o LAPACK_version.o -clean: - rm -f *.o +run: all + ./testlsame + ./testslamch + ./testdlamch + ./testsecond + ./testdsecnd + ./testieee + ./testversion + +.SUFFIXES: .o .f .f.o: $(FORTRAN) $(OPTS) -c -o $@ $< |