summaryrefslogtreecommitdiff
path: root/CBLAS/Makefile
blob: 2511f9e8c9ec36f0ca9b3d1114ac570b7c760d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
include ../make.inc

all: cblas

cblas: include/cblas_mangling.h
	$(MAKE) -C src

include/cblas_mangling.h: include/cblas_mangling_with_flags.h.in
	cp $< $@

cblas_testing: cblas
	$(MAKE) -C testing run

cblas_example: cblas
	$(MAKE) -C examples

clean: cleanlib

cleanlib:
	$(MAKE) -C src clean

cleanexe:
	$(MAKE) -C testing cleanexe

cleanall: clean cleanexe
	$(MAKE) -C src cleanall
	$(MAKE) -C examples cleanall