mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-19 08:58:32 -05:00
Continue disentangling the crypto library functions from the generic crypto infrastructure by moving the mips ChaCha and Poly1305 library functions into a new directory arch/mips/lib/crypto/ that does not depend on CRYPTO. This mirrors the distinction between crypto/ and lib/crypto/. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
23 lines
572 B
Makefile
23 lines
572 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for MIPS-specific library files..
|
|
#
|
|
|
|
obj-y += crypto/
|
|
|
|
lib-y += bitops.o csum_partial.o delay.o memcpy.o memset.o \
|
|
mips-atomic.o strncpy_user.o \
|
|
strnlen_user.o uncached.o
|
|
|
|
obj-y += iomap_copy.o
|
|
obj-$(CONFIG_PCI) += iomap-pci.o
|
|
lib-$(CONFIG_GENERIC_CSUM) := $(filter-out csum_partial.o, $(lib-y))
|
|
|
|
obj-$(CONFIG_CPU_GENERIC_DUMP_TLB) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o
|
|
|
|
obj-$(CONFIG_CRC32_ARCH) += crc32-mips.o
|
|
|
|
# libgcc-style stuff needed in the kernel
|
|
obj-y += bswapsi.o bswapdi.o multi3.o
|