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
8 ifeq ($(uname_m),armv6l)
9 CFLAGS=-O3 -march=armv6 -mfpu=vfp -mfloat-abi=hard -lrt `pkg-config --cflags --libs glib-2.0
11 CFLAGS=-O3 `pkg-config --cflags --libs glib-2.0`
18 $(C) -c -o $@ $< $(CFLAGS)
20 one_round_new.o: one_round_new.cpp
21 $(CXX) -c -o $@ $< $(CFLAGS)
23 one_round_new3.o: one_round_new3.cpp
24 $(CXX) -c -o $@ $< $(CFLAGS)
26 one_round_steph.o: one_round_steph.cpp
27 $(CXX) -c -o $@ $< $(CFLAGS)
29 one_round_auth.o: one_round_auth.cpp
30 $(CXX) -c -o $@ $< $(CFLAGS)
33 one_round_hash.o: one_round_hash.cpp
34 $(CXX) -c -o $@ $< $(CFLAGS)
36 one_round_hash_new.o: one_round_hash_new.cpp
37 $(CXX) -c -o $@ $< $(CFLAGS)
41 one_round_par2.o: one_round_par2.cpp
42 $(CXX) -fopenmp -c -o $@ $< $(CFLAGS)
44 one_round_new: pixmap_io.o one_round_new.o
45 $(CXX) -o $@ $^ $(CFLAGS)
47 one_round_new3: pixmap_io.o one_round_new3.o
48 $(CXX) -o $@ $^ $(CFLAGS)
50 one_round_steph: pixmap_io.o one_round_steph.o
51 $(CXX) -o $@ $^ $(CFLAGS)
54 one_round_par2: pixmap_io.o one_round_par2.o
55 $(CXX) -fopenmp -o $@ $^ $(CFLAGS)
58 one_round_hash: pixmap_io.o one_round_hash.o
59 $(CXX) -o $@ $^ $(CFLAGS)
61 one_round_hash_new: pixmap_io.o one_round_hash_new.o
62 $(CXX) -o $@ $^ $(CFLAGS)
64 one_round_auth: pixmap_io.o one_round_auth.o
65 $(CXX) -o $@ $^ $(CFLAGS)
68 rm -rf *.o one_round_new one_round_hash one_round_par2 one_round_hash_new one_round_steph