numeric-linalg

Educational material on the SciPy implementation of numerical linear algebra algorithms

NameSizeMode
..
lapack/BLAS/Makefile 455B -rw-r--r--
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
TOPSRCDIR = ..
include $(TOPSRCDIR)/make.inc

.PHONY: all
all: blas

.PHONY: blas
blas:
	$(MAKE) -C SRC

.PHONY: blas_testing
blas_testing: blas
	$(MAKE) -C TESTING run

.PHONY: clean cleanobj cleanlib cleanexe cleantest
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