X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/d252a09c09194eb764275de868606ba944ad0f97..752a89b144f0c841c59285f2c987544c36ba205a:/OneRoundIoT/openssl/Makefile diff --git a/OneRoundIoT/openssl/Makefile b/OneRoundIoT/openssl/Makefile index e463ec3..34b74d2 100644 --- a/OneRoundIoT/openssl/Makefile +++ b/OneRoundIoT/openssl/Makefile @@ -5,6 +5,7 @@ OBJ2 = pixmap_io.o openssl_evp_cmac.o 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 openssl_evp: $(OBJ) $(C) -o $@ $^ $(CFLAGS) @@ -22,8 +23,12 @@ aesccm: $(OBJ4) openssl_evp_gcm: $(OBJ5) $(C) -o $@ $^ $(CFLAGS) +openssl_evp_hmac: $(OBJ6) + $(C) -o $@ $^ $(CFLAGS) + + %.o: %.c - $(C) -c -o $@ $< + $(C) -c -o $@ $< -O3 clean: