https://github.com/torvalds/linux
Revision 10cf6831fcf311404f0525e96cb9ae540de437dd authored by Octavian Purdila on 21 February 2018, 20:40:30 UTC, committed by Octavian Purdila on 22 February 2018, 03:47:42 UTC
Signed-off-by: Octavian Purdila <tavi@cs.pub.ro>
1 parent 414c483
Raw File
Tip revision: 10cf6831fcf311404f0525e96cb9ae540de437dd authored by Octavian Purdila on 21 February 2018, 20:40:30 UTC
.circleci: add initial build configuration
Tip revision: 10cf683
Makefile
# SPDX-License-Identifier: GPL-2.0
#
# 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-$(CONFIG_POSIX_MQUEUE) += mqueue.o msgutil.o
obj-$(CONFIG_IPC_NS) += namespace.o
obj-$(CONFIG_POSIX_MQUEUE_SYSCTL) += mq_sysctl.o

back to top