A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
Cipher_code.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
new
[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