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

Private GIT Repository
250dc55e2b8418e66c95717214684c9a91df9c1f
[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 `pkg-config --cflags --libs glib-2.0`
7 else
8 ifeq ($(uname_m),armv6l)
9 CFLAGS=-O3   -march=armv6 -mfpu=vfp -mfloat-abi=hard -lrt `pkg-config --cflags --libs glib-2.0`
10 else
11 CFLAGS=-O3 `pkg-config --cflags --libs glib-2.0`
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 one_round_new3.o: one_round_new3.cpp 
24         $(CXX) -c -o $@ $< $(CFLAGS)
25
26 one_round_steph.o: one_round_steph.cpp 
27         $(CXX) -c -o $@ $< $(CFLAGS)
28
29 one_round_auth.o: one_round_auth.cpp 
30         $(CXX) -c -o $@ $< $(CFLAGS)
31
32
33 one_round_hash.o: one_round_hash.cpp 
34         $(CXX) -c -o $@ $< $(CFLAGS)
35
36 one_round_hash_new.o: one_round_hash_new.cpp 
37         $(CXX) -c -o $@ $< $(CFLAGS)
38
39 one_round_hash_new2.o: one_round_hash_new2.cpp 
40         $(CXX) -c -o $@ $< $(CFLAGS)
41
42 one_round_hash_new3.o: one_round_hash_new3.cpp 
43         $(CXX) -c -o $@ $< $(CFLAGS)
44
45
46 one_round_par2.o: one_round_par2.cpp 
47         $(CXX)  -fopenmp -c -o $@ $< $(CFLAGS)
48
49 one_round_new: pixmap_io.o one_round_new.o 
50         $(CXX)  -o $@ $^ $(CFLAGS)
51
52 one_round_new3: pixmap_io.o one_round_new3.o 
53         $(CXX)  -o $@ $^ $(CFLAGS)
54
55 one_round_steph: pixmap_io.o one_round_steph.o 
56         $(CXX)  -o $@ $^ $(CFLAGS)
57
58
59 one_round_par2: pixmap_io.o one_round_par2.o 
60         $(CXX) -fopenmp -o $@ $^ $(CFLAGS)
61
62
63 one_round_hash: pixmap_io.o one_round_hash.o 
64         $(CXX)  -o $@ $^ $(CFLAGS)
65
66 one_round_hash_new: pixmap_io.o one_round_hash_new.o 
67         $(CXX)  -o $@ $^ $(CFLAGS)
68
69 one_round_hash_new2: pixmap_io.o one_round_hash_new2.o 
70         $(CXX)  -o $@ $^ $(CFLAGS)
71
72 one_round_hash_new3: pixmap_io.o one_round_hash_new3.o 
73         $(CXX)  -o $@ $^ $(CFLAGS)
74
75 rc4_hash: pixmap_io.o rc4_hash.o 
76         $(CXX)  -o $@ $^ $(CFLAGS)
77
78 rc4_hash2: pixmap_io.o rc4_hash2.o 
79         $(CXX)  -o $@ $^ $(CFLAGS)
80
81 rc4_hash3: pixmap_io.o rc4_hash3.o 
82         $(CXX)  -o $@ $^ $(CFLAGS)
83
84 one_round_auth: pixmap_io.o one_round_auth.o 
85         $(CXX)  -o $@ $^ $(CFLAGS)
86
87 clean:
88         rm -rf *.o one_round_new one_round_hash one_round_par2 one_round_hash_new  rc4_hash rc4_hash2  rc4_hash3 one_round_steph