summaryrefslogtreecommitdiffstats
path: root/crypto/aes/Makefile
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2006-08-31 14:04:04 +0000
committerBen Laurie <ben@openssl.org>2006-08-31 14:04:04 +0000
commitaa6d1a0c19c2f7631b2d3473e4ae25581d2b4dff (patch)
treeefee83d0a45fb212c34dd395d163ba2be2a54f2a /crypto/aes/Makefile
parent777c47acbeecf9602cc465864c9f5f2c609c989d (diff)
Forward port of IGE mode.
Diffstat (limited to 'crypto/aes/Makefile')
-rw-r--r--crypto/aes/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/aes/Makefile b/crypto/aes/Makefile
index 448760bd4b..fa46373788 100644
--- a/crypto/aes/Makefile
+++ b/crypto/aes/Makefile
@@ -23,8 +23,10 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
-LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o $(AES_ASM_OBJ)
+LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
+ aes_ctr.c aes_ige.c
+LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o \
+ $(AES_ASM_OBJ)
SRC= $(LIBSRC)