diff options
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 $@ $< |