summaryrefslogtreecommitdiffstats
path: root/demos/cipher/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'demos/cipher/Makefile')
-rw-r--r--demos/cipher/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/demos/cipher/Makefile b/demos/cipher/Makefile
index b4f08a3746..81f526535e 100644
--- a/demos/cipher/Makefile
+++ b/demos/cipher/Makefile
@@ -7,18 +7,21 @@
#
# LD_LIBRARY_PATH=../.. ./aesccm
# LD_LIBRARY_PATH=../.. ./aesgcm
+# LD_LIBRARY_PATH=../.. ./aeskeywrap
+# LD_LIBRARY_PATH=../.. ./ariacbc
CFLAGS = $(OPENSSL_INCS_LOCATION)
LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
-all: aesccm aesgcm ariacbc
+all: aesccm aesgcm aeskeywrap ariacbc
aesccm: aesccm.o
aesgcm: aesgcm.o
+aeskeywrap: aeskeywrap.o
ariacbc: ariacbc.o
-aesccm aesgcm ariacbc:
+aesccm aesgcm aeskeywrap ariacbc:
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
clean:
- $(RM) aesccm aesgcm ariacbc *.o
+ $(RM) aesccm aesgcm aeskeywrap ariacbc *.o