summaryrefslogtreecommitdiff
path: root/arch/arm/probes/kprobes/Makefile
blob: 6159010dac4a6d2ea8cbdb66766400d2b6f0638f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: GPL-2.0
KASAN_SANITIZE_actions-common.o := n
KASAN_SANITIZE_actions-arm.o := n
KASAN_SANITIZE_actions-thumb.o := n
obj-$(CONFIG_KPROBES)		+= core.o actions-common.o checkers-common.o
obj-$(CONFIG_ARM_KPROBES_TEST)	+= test-kprobes.o
test-kprobes-objs		:= test-core.o

ifdef CONFIG_THUMB2_KERNEL
obj-$(CONFIG_KPROBES)		+= actions-thumb.o checkers-thumb.o
test-kprobes-objs		+= test-thumb.o
else
obj-$(CONFIG_KPROBES)		+= actions-arm.o checkers-arm.o
obj-$(CONFIG_OPTPROBES)		+= opt-arm.o
test-kprobes-objs		+= test-arm.o
endif