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

Private GIT Repository
Merge branch 'master' of ssh://info.iut-bm.univ-fcomte.fr/Cipher_code
[Cipher_code.git] / OneRoundIoT / OneRound / Makefile
1 CXX=g++
2 C=gcc
3 CFLAGS=-O3  -std=c++11 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -lrt
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