a5494dcd8b
This is just a simple cleanup to keep kernel/sysctl.c from getting to crowded with special cases, and by keeping all of the ipc logic to together it makes the code a little more readable. [gcoady.lk@gmail.com: build fix] Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Cc: Serge E. Hallyn <serue@us.ibm.com> Cc: Herbert Poetzl <herbert@13thfloor.at> Cc: Kirill Korotaev <dev@sw.ru> Signed-off-by: Grant Coady <gcoady.lk@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
10 lines
282 B
Makefile
10 lines
282 B
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
|
|
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)
|
|
|