A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
Cipher_code.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
new
[Cipher_code.git]
/
OneRoundIoT
/
openssl
/
Makefile
diff --git
a/OneRoundIoT/openssl/Makefile
b/OneRoundIoT/openssl/Makefile
index d123b571c80116ba8f519e198e3f7b3469cbaacb..b2f769ed2efce8085360d81616e3fedce39ff049 100644
(file)
--- a/
OneRoundIoT/openssl/Makefile
+++ b/
OneRoundIoT/openssl/Makefile
@@
-1,15
+1,19
@@
C=gcc
CFLAGS= -I /usr/include/openssl/ -lcrypto -O3 -std=c99
OBJ = pixmap_io.o openssl_evp.o
C=gcc
CFLAGS= -I /usr/include/openssl/ -lcrypto -O3 -std=c99
OBJ = pixmap_io.o openssl_evp.o
+OBJ2 = pixmap_io.o openssl_evp_cmac.o
openssl_evp: $(OBJ)
$(C) -o $@ $^ $(CFLAGS)
openssl_evp: $(OBJ)
$(C) -o $@ $^ $(CFLAGS)
+openssl_evp_cmac: $(OBJ2)
+ $(C) -o $@ $^ $(CFLAGS)
%.o: %.c
$(C) -c -o $@ $<
clean:
%.o: %.c
$(C) -c -o $@ $<
clean:
- rm -rf $(OBJ) openssl_evp
+ rm -rf $(OBJ) openssl_evp openssl_evp_cmac
+