]> 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
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 one_round_par.o: one_round_par.cpp 
24         $(CXX)  -fopenmp -c -o $@ $< $(CFLAGS)
25
26 one_round_new: pixmap_io.o one_round_new.o 
27         $(CXX)  -o $@ $^ $(CFLAGS)
28
29 one_round_par: pixmap_io.o one_round_par.o 
30         $(CXX) -fopenmp -o $@ $^ $(CFLAGS)
31
32 clean:
33         rm -rf *.o one_round_new