X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/e8a8b4d9c7d32c2d90c0b8c1ac63f47c3959116a..d463aa6b004f2432356128d77de09592ae822611:/OneRoundIoT/openssl/Makefile?ds=sidebyside diff --git a/OneRoundIoT/openssl/Makefile b/OneRoundIoT/openssl/Makefile index b2f769e..5a8b638 100644 --- a/OneRoundIoT/openssl/Makefile +++ b/OneRoundIoT/openssl/Makefile @@ -1,7 +1,9 @@ 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 +OBJ2 = pixmap_io.o openssl_evp_cmac.o +OBJ3 = pixmap_io.o openssl_evp_ccm.o +OBJ4 = pixmap_io.o aesccm.o openssl_evp: $(OBJ) @@ -10,10 +12,16 @@ openssl_evp: $(OBJ) openssl_evp_cmac: $(OBJ2) $(C) -o $@ $^ $(CFLAGS) +openssl_evp_ccm: $(OBJ3) + $(C) -o $@ $^ $(CFLAGS) + +aesccm: $(OBJ4) + $(C) -o $@ $^ $(CFLAGS) + %.o: %.c $(C) -c -o $@ $< clean: - rm -rf $(OBJ) openssl_evp openssl_evp_cmac + rm -rf $(OBJ) openssl_evp openssl_evp_cmac openssl_evp_ccm