GNU Linux-libre 5.19-rc6-gnu
[releases.git] / arch / arm / probes / kprobes / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 KASAN_SANITIZE_actions-common.o := n
3 KASAN_SANITIZE_actions-arm.o := n
4 KASAN_SANITIZE_actions-thumb.o := n
5 obj-$(CONFIG_KPROBES)           += core.o actions-common.o checkers-common.o
6 obj-$(CONFIG_ARM_KPROBES_TEST)  += test-kprobes.o
7 test-kprobes-objs               := test-core.o
8
9 ifdef CONFIG_THUMB2_KERNEL
10 obj-$(CONFIG_KPROBES)           += actions-thumb.o checkers-thumb.o
11 test-kprobes-objs               += test-thumb.o
12 else
13 obj-$(CONFIG_KPROBES)           += actions-arm.o checkers-arm.o
14 obj-$(CONFIG_OPTPROBES)         += opt-arm.o
15 test-kprobes-objs               += test-arm.o
16 endif