]> AND Private Git Repository - Cipher_code.git/blobdiff - OneRoundIoT/openssl/Makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
[Cipher_code.git] / OneRoundIoT / openssl / Makefile
index 34b74d2a0670b8dc651d3731317f476126bce8d4..b88f1c9a4c8e60cf2854ad75c8b702e3e6fa8894 100644 (file)
@@ -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