summaryrefslogtreecommitdiffstats
path: root/crypto/modes/Makefile
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2010-05-04 19:23:02 +0000
committerAndy Polyakov <appro@openssl.org>2010-05-04 19:23:02 +0000
commitf472ec8c2f354314d278e11be567b43630acf090 (patch)
tree24e207ad6d35b9e545289f26053527e2449deadf /crypto/modes/Makefile
parent8a682556b49c04dc646e321d0e5cbb252fa8f526 (diff)
"Jumbo" update for crypto/modes:
- introduce common modes_lcl.h; - ctr128.c: implement additional CRYPTO_ctr128_encrypt_ctr32 interface; - gcm128.c: add omitted ARM initialization, remove ctx.ctr;
Diffstat (limited to 'crypto/modes/Makefile')
-rw-r--r--crypto/modes/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile
index 4c0de955ba..0d6306c47a 100644
--- a/crypto/modes/Makefile
+++ b/crypto/modes/Makefile
@@ -95,8 +95,9 @@ clean:
# DO NOT DELETE THIS LINE -- make depend depends on it.
-cbc128.o: cbc128.c modes.h
-cfb128.o: cfb128.c modes.h
-ctr128.o: ctr128.c modes.h
-cts128.o: cts128.c modes.h
-ofb128.o: modes.h ofb128.c
+cbc128.o: ../../include/openssl/modes.h cbc128.c modes_lcl.h
+cfb128.o: ../../include/openssl/modes.h cfb128.c modes_lcl.h
+ctr128.o: ../../include/openssl/modes.h ctr128.c modes_lcl.h
+cts128.o: ../../include/openssl/modes.h cts128.c modes_lcl.h
+gcm128.o: ../../include/openssl/modes.h gcm128.c modes_lcl.h
+ofb128.o: ../../include/openssl/modes.h modes_lcl.h ofb128.c