summaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorSebastian Siewior2008-03-30 10:36:09 +0200
committerHerbert Xu2008-04-21 04:19:23 +0200
commitc3715cb90f722b1cf5f6f073be02cc8a49659b90 (patch)
treeee1ec3eb75ee2083b41ee21dadc4342115f6e8fb /crypto/Makefile
parent[CRYPTO] cts: Add CTS mode required for Kerberos AES support (diff)
downloadkernel-qcow2-linux-c3715cb90f722b1cf5f6f073be02cc8a49659b90.tar.gz
kernel-qcow2-linux-c3715cb90f722b1cf5f6f073be02cc8a49659b90.tar.xz
kernel-qcow2-linux-c3715cb90f722b1cf5f6f073be02cc8a49659b90.zip
[CRYPTO] api: Make the crypto subsystem fully modular
Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 6d34bf7ecf8d..ca024418f4fb 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -2,7 +2,8 @@
# Cryptographic API
#
-obj-$(CONFIG_CRYPTO) += api.o cipher.o digest.o compress.o
+obj-$(CONFIG_CRYPTO) += crypto.o
+crypto-objs := api.o cipher.o digest.o compress.o
crypto_algapi-$(CONFIG_PROC_FS) += proc.o
crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y)