A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
Cipher_code.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
new hash
[Cipher_code.git]
/
IDA
/
Makefile
1
2
3
4
CPP_FLAGS= -fopenmp -O3 -lc -lm
5
6
LIBS= -larmadillo -lopenblas
7
8
test_mat2: test_mat2.cpp
9
g++ -std=c++11 $(CPP_FLAGS) -o $@ $< $(LIBS)
10
11
clean:
12
rm test_mat2