Merge branch 'linus' into locking/core, to resolve conflicts
[sfrench/cifs-2.6.git] / arch / arm / probes / kprobes / Makefile
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
5
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