X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/05585a79ffb5b7fff73a9e201706f94bbdd4a9f2..3ed2f4b380f0d9f49ff45bf6accf8a55c511a353:/OneRoundIoT/openssl/Makefile diff --git a/OneRoundIoT/openssl/Makefile b/OneRoundIoT/openssl/Makefile index 34b74d2..b88f1c9 100644 --- a/OneRoundIoT/openssl/Makefile +++ b/OneRoundIoT/openssl/Makefile @@ -6,6 +6,7 @@ OBJ3 = pixmap_io.o openssl_evp_ccm.o OBJ4 = pixmap_io.o aesccm.o OBJ5 = pixmap_io.o openssl_evp_gcm.o OBJ6 = pixmap_io.o openssl_evp_hmac.o +OBJ7 = pixmap_io.o openssl_evp_ocb.o openssl_evp: $(OBJ) $(C) -o $@ $^ $(CFLAGS) @@ -26,11 +27,14 @@ openssl_evp_gcm: $(OBJ5) openssl_evp_hmac: $(OBJ6) $(C) -o $@ $^ $(CFLAGS) +openssl_evp_ocb: $(OBJ7) + $(C) -o $@ $^ $(CFLAGS) + %.o: %.c $(C) -c -o $@ $< -O3 clean: - rm -rf $(OBJ) openssl_evp openssl_evp_cmac openssl_evp_ccm + rm -rf $(OBJ) openssl_evp openssl_evp_cmac openssl_evp_ccm openssl_evp_ocb