summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorKyle Guinn <elyk03@gmail.com>2017-02-06 01:07:10 -0600
committerKyle Guinn <elyk03@gmail.com>2017-02-06 01:07:10 -0600
commit8fce0e24bdbf070a56eaffe993ef713980bd8028 (patch)
tree46889dd598f44b4c8d3373030c39effc246e11ef /INSTALL
parent7daa32722f95d150f1d7229b71f1030c655eccd5 (diff)
downloadlapack-8fce0e24bdbf070a56eaffe993ef713980bd8028.tar.gz
lapack-8fce0e24bdbf070a56eaffe993ef713980bd8028.tar.bz2
lapack-8fce0e24bdbf070a56eaffe993ef713980bd8028.zip
Simplify the clean targets
cleanobj: Remove object files cleanlib: Remove libraries cleanexe: Remove test and example executables cleantest: Remove test output and core dumps clean: All of the above
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/INSTALL/Makefile b/INSTALL/Makefile
index 901d0b5d..150a061d 100644
--- a/INSTALL/Makefile
+++ b/INSTALL/Makefile
@@ -2,11 +2,6 @@ include ../make.inc
all: testlsame testslamch testdlamch testsecond testdsecnd testieee testversion
-clean:
- rm -f *.o
-cleanall:
- rm -f test*
-
testlsame: lsame.o lsametst.o
$(LOADER) $(LOADOPTS) -o $@ $^
@@ -39,6 +34,14 @@ run: all
./testieee
./testversion
+clean: cleanobj cleanexe cleantest
+cleanobj:
+ rm -f *.o
+cleanexe:
+ rm -f test*
+cleantest:
+ rm -f core
+
.SUFFIXES: .o .f
.f.o:
$(FORTRAN) $(OPTS) -c -o $@ $<