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

Private GIT Repository
cb01d4f172f0ae3a5e4e0b816c0c423fd437a3a5
[Cipher_code.git] / OneRoundIoT / OneRound / Makefile
1 CXX=g++
2 C=gcc
3
4 uname_m := $(shell uname -m)
5 ifeq ($(uname_m),armv7l)
6 CFLAGS=-O3  -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -lrt
7 else
8 ifeq ($(uname_m),armv6l)
9 CFLAGS=-O3   -march=armv6 -mfpu=vfp -mfloat-abi=hard -lrt
10 else
11 CFLAGS=-O3 
12 endif
13 endif
14
15
16
17 %.o: %.c 
18         $(C) -c -o $@ $< $(CFLAGS)
19
20 one_round_new.o: one_round_new.cpp 
21         $(CXX) -c -o $@ $< $(CFLAGS)
22
23
24 one_round_hash.o: one_round_hash.cpp 
25         $(CXX) -c -o $@ $< $(CFLAGS)
26
27
28
29 one_round_par2.o: one_round_par2.cpp 
30         $(CXX)  -fopenmp -c -o $@ $< $(CFLAGS)
31
32 one_round_new: pixmap_io.o one_round_new.o 
33         $(CXX)  -o $@ $^ $(CFLAGS)
34
35
36 one_round_par2: pixmap_io.o one_round_par2.o 
37         $(CXX) -fopenmp -o $@ $^ $(CFLAGS)
38
39
40 one_round_hash: pixmap_io.o one_round_hash.o 
41         $(CXX)  -o $@ $^ $(CFLAGS)
42
43 clean:
44         rm -rf *.o one_round_new one_round_hash one_round_par2