X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/d463aa6b004f2432356128d77de09592ae822611..e1e2e7c7fc04e729923680bff8b1638d8910d841:/OneRoundIoT/openssl/Makefile diff --git a/OneRoundIoT/openssl/Makefile b/OneRoundIoT/openssl/Makefile index 5a8b638..e463ec3 100644 --- a/OneRoundIoT/openssl/Makefile +++ b/OneRoundIoT/openssl/Makefile @@ -4,7 +4,7 @@ OBJ = pixmap_io.o openssl_evp.o 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 openssl_evp: $(OBJ) $(C) -o $@ $^ $(CFLAGS) @@ -18,6 +18,10 @@ openssl_evp_ccm: $(OBJ3) aesccm: $(OBJ4) $(C) -o $@ $^ $(CFLAGS) + +openssl_evp_gcm: $(OBJ5) + $(C) -o $@ $^ $(CFLAGS) + %.o: %.c $(C) -c -o $@ $<