xref: /OK3568_Linux_fs/kernel/arch/arm/probes/kprobes/Makefile (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# SPDX-License-Identifier: GPL-2.0
2obj-$(CONFIG_KPROBES)		+= core.o actions-common.o checkers-common.o
3obj-$(CONFIG_ARM_KPROBES_TEST)	+= test-kprobes.o
4test-kprobes-objs		:= test-core.o
5
6ifdef CONFIG_THUMB2_KERNEL
7obj-$(CONFIG_KPROBES)		+= actions-thumb.o checkers-thumb.o
8test-kprobes-objs		+= test-thumb.o
9else
10obj-$(CONFIG_KPROBES)		+= actions-arm.o checkers-arm.o
11obj-$(CONFIG_OPTPROBES)		+= opt-arm.o
12test-kprobes-objs		+= test-arm.o
13endif
14