aboutsummaryrefslogtreecommitdiff
path: root/CBLAS/Makefile
blob: d7ee0c5065ea65908c2ed2a828822e857cdc4979 (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:
	cd include && cp cblas_mangling_with_flags.h cblas_mangling.h
	cd src && $(MAKE) all


clean: cleanlib

cleanlib:
	cd src && $(MAKE) clean

cleanexe:
	cd testing && $(MAKE) cleanexe

cleanall: clean cleanexe
	rm -f $(CBLASLIB)
	cd examples && rm -f *.o cblas_ex1 cblas_ex2

cblas_testing:
	cd testing && $(MAKE) all

runtst:
	cd testing && $(MAKE) run
	
example: all
	cd examples && make all