File: Makefile

package info (click to toggle)
lapack 3.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 72,824 kB
  • ctags: 41,660
  • sloc: fortran: 581,236; ansic: 175,264; makefile: 4,428; python: 269; sh: 133
file content (27 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (3)
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.in 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