2015-01-05 19:29:21 +08:00
|
|
|
obj-$(CONFIG_KPROBES) += core.o actions-common.o checkers-common.o
|
2015-01-09 10:19:49 +08:00
|
|
|
obj-$(CONFIG_ARM_KPROBES_TEST) += test-kprobes.o
|
|
|
|
test-kprobes-objs := test-core.o
|
|
|
|
|
|
|
|
ifdef CONFIG_THUMB2_KERNEL
|
2015-01-05 19:29:21 +08:00
|
|
|
obj-$(CONFIG_KPROBES) += actions-thumb.o checkers-thumb.o
|
2015-01-09 10:19:49 +08:00
|
|
|
test-kprobes-objs += test-thumb.o
|
|
|
|
else
|
2015-01-05 19:29:21 +08:00
|
|
|
obj-$(CONFIG_KPROBES) += actions-arm.o checkers-arm.o
|
2015-01-09 14:37:36 +08:00
|
|
|
obj-$(CONFIG_OPTPROBES) += opt-arm.o
|
2015-01-09 10:19:49 +08:00
|
|
|
test-kprobes-objs += test-arm.o
|
|
|
|
endif
|