]> AND Private Git Repository - Cipher_code.git/blob - IDA/Makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
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 ida: ida.cpp
12         g++ -std=c++11 $(CPP_FLAGS)  -o $@ $<   $(LIBS)
13
14 clean:
15         rm test_mat2 ida