aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 7cf36253a75e..ca024418f4fb 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -2,7 +2,8 @@
2# Cryptographic API 2# Cryptographic API
3# 3#
4 4
5obj-$(CONFIG_CRYPTO) += api.o cipher.o digest.o compress.o 5obj-$(CONFIG_CRYPTO) += crypto.o
6crypto-objs := api.o cipher.o digest.o compress.o
6 7
7crypto_algapi-$(CONFIG_PROC_FS) += proc.o 8crypto_algapi-$(CONFIG_PROC_FS) += proc.o
8crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y) 9crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y)
@@ -28,13 +29,14 @@ obj-$(CONFIG_CRYPTO_MD4) += md4.o
28obj-$(CONFIG_CRYPTO_MD5) += md5.o 29obj-$(CONFIG_CRYPTO_MD5) += md5.o
29obj-$(CONFIG_CRYPTO_SHA1) += sha1_generic.o 30obj-$(CONFIG_CRYPTO_SHA1) += sha1_generic.o
30obj-$(CONFIG_CRYPTO_SHA256) += sha256_generic.o 31obj-$(CONFIG_CRYPTO_SHA256) += sha256_generic.o
31obj-$(CONFIG_CRYPTO_SHA512) += sha512.o 32obj-$(CONFIG_CRYPTO_SHA512) += sha512_generic.o
32obj-$(CONFIG_CRYPTO_WP512) += wp512.o 33obj-$(CONFIG_CRYPTO_WP512) += wp512.o
33obj-$(CONFIG_CRYPTO_TGR192) += tgr192.o 34obj-$(CONFIG_CRYPTO_TGR192) += tgr192.o
34obj-$(CONFIG_CRYPTO_GF128MUL) += gf128mul.o 35obj-$(CONFIG_CRYPTO_GF128MUL) += gf128mul.o
35obj-$(CONFIG_CRYPTO_ECB) += ecb.o 36obj-$(CONFIG_CRYPTO_ECB) += ecb.o
36obj-$(CONFIG_CRYPTO_CBC) += cbc.o 37obj-$(CONFIG_CRYPTO_CBC) += cbc.o
37obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o 38obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o
39obj-$(CONFIG_CRYPTO_CTS) += cts.o
38obj-$(CONFIG_CRYPTO_LRW) += lrw.o 40obj-$(CONFIG_CRYPTO_LRW) += lrw.o
39obj-$(CONFIG_CRYPTO_XTS) += xts.o 41obj-$(CONFIG_CRYPTO_XTS) += xts.o
40obj-$(CONFIG_CRYPTO_CTR) += ctr.o 42obj-$(CONFIG_CRYPTO_CTR) += ctr.o