diff options
author | Kyle Guinn <elyk03@gmail.com> | 2017-02-06 01:07:10 -0600 |
---|---|---|
committer | Kyle Guinn <elyk03@gmail.com> | 2017-02-06 01:07:10 -0600 |
commit | 8fce0e24bdbf070a56eaffe993ef713980bd8028 (patch) | |
tree | 46889dd598f44b4c8d3373030c39effc246e11ef /TESTING/LIN | |
parent | 7daa32722f95d150f1d7229b71f1030c655eccd5 (diff) | |
download | lapack-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 'TESTING/LIN')
-rw-r--r-- | TESTING/LIN/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/TESTING/LIN/Makefile b/TESTING/LIN/Makefile index 4dc891c1..f554bea0 100644 --- a/TESTING/LIN/Makefile +++ b/TESTING/LIN/Makefile @@ -26,7 +26,7 @@ include ../../make.inc # # To remove the object files after the executable files have been # created, enter -# make clean +# make cleanobj # On some systems, you can force the source files to be recompiled by # entering (for example) # make single FRC=FRC @@ -298,8 +298,11 @@ $(ZLINTST): $(FRC) FRC: @FRC=$(FRC) -clean: - rm -f *.o xlintst* +clean: cleanobj cleanexe +cleanobj: + rm -f *.o +cleanexe: + rm -f xlintst* schkaa.o: schkaa.f $(FORTRAN) $(DRVOPTS) -c -o $@ $< |