blob: eb38a428ecd6178ee50af0b970f761d8cbed17c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
obj-$(CONFIG_KPROBES) += core.o actions-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
test-kprobes-objs += test-thumb.o
else
obj-$(CONFIG_KPROBES) += actions-arm.o
test-kprobes-objs += test-arm.o
endif
|