https://github.com/torvalds/linux
Revision 8684fa3e7a9ee629ca60bd811d1597646451f918 authored by Masahiro Yamada on 19 February 2016, 06:05:50 UTC, committed by Will Deacon on 19 February 2016, 10:33:35 UTC
For the same reason as commit 19514fc665ff ("arm, kbuild: make "make
install" not depend on vmlinux"), the install targets should never
trigger the rebuild of the kernel.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
1 parent 722ec35
Raw File
Tip revision: 8684fa3e7a9ee629ca60bd811d1597646451f918 authored by Masahiro Yamada on 19 February 2016, 06:05:50 UTC
arm64: kbuild: make "make install" not depend on vmlinux
Tip revision: 8684fa3
Makefile
#
# Makefile for the linux ipc.
#

obj-$(CONFIG_SYSVIPC_COMPAT) += compat.o
obj-$(CONFIG_SYSVIPC) += util.o msgutil.o msg.o sem.o shm.o syscall.o
obj-$(CONFIG_SYSVIPC_SYSCTL) += ipc_sysctl.o
obj_mq-$(CONFIG_COMPAT) += compat_mq.o
obj-$(CONFIG_POSIX_MQUEUE) += mqueue.o msgutil.o $(obj_mq-y)
obj-$(CONFIG_IPC_NS) += namespace.o
obj-$(CONFIG_POSIX_MQUEUE_SYSCTL) += mq_sysctl.o

back to top