diff options
Diffstat (limited to 'ipc/Makefile')
-rw-r--r-- | ipc/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ipc/Makefile b/ipc/Makefile new file mode 100644 index 000000000000..0a6d626cd794 --- /dev/null +++ b/ipc/Makefile @@ -0,0 +1,9 @@ +# +# 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_mq-$(CONFIG_COMPAT) += compat_mq.o +obj-$(CONFIG_POSIX_MQUEUE) += mqueue.o msgutil.o $(obj_mq-y) + |