summaryrefslogtreecommitdiff
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorDavid Michael <david.michael@coreos.com>2016-11-29 11:15:12 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-11-30 19:46:45 +0800
commitcdfcf596ec877ee09f7f7acb83c6a2d764260cc6 (patch)
treec704144cd58ffb809edfc2ac18c103befaca0918 /crypto/Makefile
parentec0d9079f2d0a97197891401f0db1c51a64b2891 (diff)
downloadlinux-crypto-cdfcf596ec877ee09f7f7acb83c6a2d764260cc6.tar.gz
linux-crypto-cdfcf596ec877ee09f7f7acb83c6a2d764260cc6.zip
crypto: rsa - Add Makefile dependencies to fix parallel builds
Both asn1 headers are included by rsa_helper.c, so rsa_helper.o should explicitly depend on them. Signed-off-by: David Michael <david.michael@coreos.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--crypto/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 99cc64ac..bd6a0290 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -40,6 +40,7 @@ obj-$(CONFIG_CRYPTO_ECDH) += ecdh_generic.o
$(obj)/rsapubkey-asn1.o: $(obj)/rsapubkey-asn1.c $(obj)/rsapubkey-asn1.h
$(obj)/rsaprivkey-asn1.o: $(obj)/rsaprivkey-asn1.c $(obj)/rsaprivkey-asn1.h
+$(obj)/rsa_helper.o: $(obj)/rsapubkey-asn1.h $(obj)/rsaprivkey-asn1.h
clean-files += rsapubkey-asn1.c rsapubkey-asn1.h
clean-files += rsaprivkey-asn1.c rsaprivkey-asn1.h