Add an EVP demo for CMAC
[openssl.git] / demos / mac / Makefile
index 500efd4127389ec8c262f29fb4ac6575589c72ed..00d2d8dbe64aca28c6385e002ca299a8e4fa8820 100644 (file)
 CFLAGS = $(OPENSSL_INCS_LOCATION) -Wall
 LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
 
-all: gmac poly1305
+all: gmac hmac-sha512 cmac-aes256 poly1305
 
 gmac: gmac.o
 hmac-sha512: hmac-sha512.o
+cmac-aes256: cmac-aes256.o
 poly1305: poly1305.o
 
-gmac hmac-sha512 poly1305:
+gmac hmac-sha512 cmac-aes256 poly1305:
        $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
 
 clean:
-       $(RM) gmac hmac-sha512 poly1305 *.o
+       $(RM) gmac hmac-sha512 cmac-aes256 poly1305 *.o