WIP FPC-III support
[linux/fpc-iii.git] / arch / arm / probes / kprobes / Makefile
blob14db56f49f0a3fb48e732b86eee0da3fab1306cf
1 # SPDX-License-Identifier: GPL-2.0
2 obj-$(CONFIG_KPROBES) += core.o actions-common.o checkers-common.o
3 obj-$(CONFIG_ARM_KPROBES_TEST) += test-kprobes.o
4 test-kprobes-objs := test-core.o
6 ifdef CONFIG_THUMB2_KERNEL
7 obj-$(CONFIG_KPROBES) += actions-thumb.o checkers-thumb.o
8 test-kprobes-objs += test-thumb.o
9 else
10 obj-$(CONFIG_KPROBES) += actions-arm.o checkers-arm.o
11 obj-$(CONFIG_OPTPROBES) += opt-arm.o
12 test-kprobes-objs += test-arm.o
13 endif