summaryrefslogtreecommitdiffstats
path: root/crypto/modes/Makefile
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-18 13:15:37 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-18 13:15:37 +0000
commit6386b1b34d955178ff8bf6fe5247667ff63a5dee (patch)
tree3eba261737e6b791608ec7b637002ea6503d042d /crypto/modes/Makefile
parent3b4a855778462b17c6bcfa1a8552731a808125c6 (diff)
Compile ccm128.c, move some structures to modes_lcl.h add prototypes.
Diffstat (limited to 'crypto/modes/Makefile')
-rw-r--r--crypto/modes/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile
index 57433fdbd0..755c441328 100644
--- a/crypto/modes/Makefile
+++ b/crypto/modes/Makefile
@@ -21,9 +21,10 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c xts128.c
+LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
+ ccm128.c xts128.c
LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
- xts128.o $(MODES_ASM_OBJ)
+ ccm128.o xts128.o $(MODES_ASM_OBJ)
SRC= $(LIBSRC)