6f860ae755
The unix.c file will be nearly the same as the tcp.c file, only differing in the initial SocketAddress creation code. Rename unix.c to socket.c and refactor it a little to prepare for merging the TCP code. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Message-Id: <1461751518-12128-14-git-send-email-berrange@redhat.com> Signed-off-by: Amit Shah <amit.shah@redhat.com>
13 lines
353 B
Makefile
13 lines
353 B
Makefile
common-obj-y += migration.o tcp.o socket.o
|
|
common-obj-y += vmstate.o
|
|
common-obj-y += qemu-file.o qemu-file-buf.o qemu-file-unix.o qemu-file-stdio.o
|
|
common-obj-y += qemu-file-channel.o
|
|
common-obj-y += xbzrle.o postcopy-ram.o
|
|
common-obj-y += qjson.o
|
|
|
|
common-obj-$(CONFIG_RDMA) += rdma.o
|
|
common-obj-$(CONFIG_POSIX) += exec.o fd.o
|
|
|
|
common-obj-y += block.o
|
|
|