blob: 76a36bf102b7fc442337cf4da60f7e21f59f98da [file] [log] [blame]
Kyle Swenson8d8f6542021-03-15 11:02:55 -06001obj-$(CONFIG_KPROBES) += core.o actions-common.o checkers-common.o
2obj-$(CONFIG_ARM_KPROBES_TEST) += test-kprobes.o
3test-kprobes-objs := test-core.o
4
5ifdef CONFIG_THUMB2_KERNEL
6obj-$(CONFIG_KPROBES) += actions-thumb.o checkers-thumb.o
7test-kprobes-objs += test-thumb.o
8else
9obj-$(CONFIG_KPROBES) += actions-arm.o checkers-arm.o
10obj-$(CONFIG_OPTPROBES) += opt-arm.o
11test-kprobes-objs += test-arm.o
12endif