diff options
Diffstat (limited to 'kernel/arch/arm/probes/kprobes/Makefile')
-rw-r--r-- | kernel/arch/arm/probes/kprobes/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/arch/arm/probes/kprobes/Makefile b/kernel/arch/arm/probes/kprobes/Makefile new file mode 100644 index 000000000..76a36bf10 --- /dev/null +++ b/kernel/arch/arm/probes/kprobes/Makefile @@ -0,0 +1,12 @@ +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 |