Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6da6c0db5316275015e8cc2959f12a17584aeb64 authored by Linus Torvalds on 29 April 2018, 21:17:42 UTC
Linux v4.17-rc3
Tip revision: 6da6c0d
Makefile
# SPDX-License-Identifier: GPL-2.0
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
back to top