File: Makefile

package info (click to toggle)
intel-mkl 2020.4.304-7
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 566,272 kB
  • sloc: xml: 3,919; sh: 798; python: 252; cpp: 211; ansic: 169; lisp: 145; awk: 117; makefile: 46
file content (16 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: default

BIN= catalog test-gemm test-gesvd

default: $(BIN)

%: %.cc
	g++ $@.cc -o $@ $(shell pkg-config --libs --cflags mkl-dynamic-ilp64-iomp)

test: default
	./catalog
	M=512 ./test-gemm
	M=512 ./test-gesvd

clean:
	-$(RM) $(BIN)