https://github.com/torvalds/linux
Raw File
Tip revision: 5b394b2ddf0347bef56e50c69a58773c94343ff3 authored by Linus Torvalds on 26 August 2018, 21:11:59 UTC
Linux 4.19-rc1
Tip revision: 5b394b2
Makefile
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_UPROBES)		+= decode.o decode-arm.o uprobes/
obj-$(CONFIG_KPROBES)		+= decode.o kprobes/
ifdef CONFIG_THUMB2_KERNEL
obj-$(CONFIG_KPROBES)		+= decode-thumb.o
else
obj-$(CONFIG_KPROBES)		+= decode-arm.o
endif
back to top