summaryrefslogtreecommitdiff
path: root/BLAS/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'BLAS/Makefile')
-rw-r--r--BLAS/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/BLAS/Makefile b/BLAS/Makefile
new file mode 100644
index 00000000..f9c4b534
--- /dev/null
+++ b/BLAS/Makefile
@@ -0,0 +1,22 @@
+include ../make.inc
+
+all: blas
+
+blas:
+ $(MAKE) -C SRC
+
+blas_testing: blas
+ $(MAKE) -C TESTING run
+
+clean:
+ $(MAKE) -C SRC clean
+ $(MAKE) -C TESTING clean
+cleanobj:
+ $(MAKE) -C SRC cleanobj
+ $(MAKE) -C TESTING cleanobj
+cleanlib:
+ $(MAKE) -C SRC cleanlib
+cleanexe:
+ $(MAKE) -C TESTING cleanexe
+cleantest:
+ $(MAKE) -C TESTING cleantest