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]
/
SboxAES
/
Makefile
1
CXX=g++
2
C=gcc
3
4
5
CFLAGS=-O3 -maes -mavx
6
7
8
9
%.o: %.c
10
$(C) -c -o $@ $< $(CFLAGS)
11
12
aes1.o: aes1.c
13
$(C) -c -o $@ $< $(CFLAGS)
14
15
aes1: pixmap_io.o aes1.o
16
$(C) -o $@ $^ $(CFLAGS)
17
18
19
clean:
20
rm -rf *.o aes1