summaryrefslogtreecommitdiff
path: root/CBLAS/Makefile
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 /CBLAS/Makefile
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 'CBLAS/Makefile')
-rw-r--r--CBLAS/Makefile20
1 files changed, 12 insertions, 8 deletions
diff --git a/CBLAS/Makefile b/CBLAS/Makefile
index 2511f9e8..513e8fc8 100644
--- a/CBLAS/Makefile
+++ b/CBLAS/Makefile
@@ -14,14 +14,18 @@ cblas_testing: cblas
cblas_example: cblas
$(MAKE) -C examples
-clean: cleanlib
-
-cleanlib:
+clean:
$(MAKE) -C src clean
-
+ $(MAKE) -C testing clean
+ $(MAKE) -C examples clean
+cleanobj:
+ $(MAKE) -C src cleanobj
+ $(MAKE) -C testing cleanobj
+ $(MAKE) -C examples cleanobj
+cleanlib:
+ $(MAKE) -C src cleanlib
cleanexe:
$(MAKE) -C testing cleanexe
-
-cleanall: clean cleanexe
- $(MAKE) -C src cleanall
- $(MAKE) -C examples cleanall
+ $(MAKE) -C examples cleanexe
+cleantest:
+ $(MAKE) -C testing cleantest