Makefile 452 B

123456789101112131415161718
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for s390-specific library files..
  4. #
  5. lib-y += delay.o string.o uaccess.o find.o
  6. obj-y += mem.o xor.o
  7. lib-$(CONFIG_SMP) += spinlock.o
  8. lib-$(CONFIG_KPROBES) += probes.o
  9. lib-$(CONFIG_UPROBES) += probes.o
  10. # Instrumenting memory accesses to __user data (in different address space)
  11. # produce false positives
  12. KASAN_SANITIZE_uaccess.o := n
  13. chkbss := mem.o
  14. include $(srctree)/arch/s390/scripts/Makefile.chkbss