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

Private GIT Repository
new
[Cipher_code.git] / OneRoundIoT / OneRound / Makefile
1 CXX=g++
2 C=gcc
3 CFLAGS=-O3  -std=c++11
4 OBJ = pixmap_io.o one_round_new.o 
5
6 %.o: %.c 
7         $(C) -c -o $@ $< $(CFLAGS)
8
9 %.o: %.cpp 
10         $(CXX) -c -o $@ $< $(CFLAGS)
11
12 one_round_new: $(OBJ)
13         $(CXX) -o $@ $^ $(CFLAGS)
14
15 clean:
16         rm -rf $(OBJ) one_round_new