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