On Sun, Dec 15, 2019 at 09:46:30PM +0100, Jason A. Donenfeld wrote: > diff --git a/arch/x86/crypto/Makefile b/arch/x86/crypto/Makefile > index 958440eae27e..6982a2f8863f 100644 > --- a/arch/x86/crypto/Makefile > +++ b/arch/x86/crypto/Makefile > @@ -73,6 +73,10 @@ aegis128-aesni-y := aegis128-aesni-asm.o aegis128-aesni-glue.o > > nhpoly1305-sse2-y := nh-sse2-x86_64.o nhpoly1305-sse2-glue.o > blake2s-x86_64-y := blake2s-core.o blake2s-glue.o > +poly1305-x86_64-y := poly1305-x86_64.o poly1305_glue.o > +ifneq ($(CONFIG_CRYPTO_POLY1305_X86_64),) > +targets += poly1305-x86_64.S > +endif poly1305-x86_64.S is a generated file, so it needs to be listed in a gitignore file arch/x86/crypto/.gitignore. - Eric