Paolo Bonzini | fd9400b | 2012-10-24 11:27:28 +0200 | [diff] [blame] | 1 | common-obj-y = net.o queue.o checksum.o util.o hub.o |
Paolo Bonzini | d8469de | 2012-05-22 13:45:55 +0200 | [diff] [blame] | 2 | common-obj-y += socket.o |
| 3 | common-obj-y += dump.o |
Dmitry Fleytman | 75020a7 | 2013-03-09 11:21:04 +0200 | [diff] [blame] | 4 | common-obj-y += eth.o |
Dr. David Alan Gilbert | 50510ea | 2019-02-27 13:24:05 +0000 | [diff] [blame] | 5 | common-obj-y += announce.o |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 6 | common-obj-$(CONFIG_L2TPV3) += l2tpv3.o |
Paolo Bonzini | 56f41de | 2019-02-14 18:35:49 +0100 | [diff] [blame] | 7 | common-obj-$(call land,$(CONFIG_VIRTIO_NET),$(CONFIG_VHOST_NET_USER)) += vhost-user.o |
| 8 | common-obj-$(call land,$(call lnot,$(CONFIG_VIRTIO_NET)),$(CONFIG_VHOST_NET_USER)) += vhost-user-stub.o |
| 9 | common-obj-$(CONFIG_ALL) += vhost-user-stub.o |
Paolo Bonzini | d8469de | 2012-05-22 13:45:55 +0200 | [diff] [blame] | 10 | common-obj-$(CONFIG_SLIRP) += slirp.o |
Marc-André Lureau | 675b9b5 | 2019-02-12 17:25:23 +0100 | [diff] [blame] | 11 | slirp.o-cflags := $(SLIRP_CFLAGS) |
| 12 | slirp.o-libs := $(SLIRP_LIBS) |
Paolo Bonzini | d8469de | 2012-05-22 13:45:55 +0200 | [diff] [blame] | 13 | common-obj-$(CONFIG_VDE) += vde.o |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 14 | common-obj-$(CONFIG_NETMAP) += netmap.o |
Yang Hongyang | fdccce4 | 2015-10-07 11:52:14 +0800 | [diff] [blame] | 15 | common-obj-y += filter.o |
Yang Hongyang | 7dbb11c | 2015-10-07 11:52:21 +0800 | [diff] [blame] | 16 | common-obj-y += filter-buffer.o |
Zhang Chen | f6d3afb | 2016-03-15 15:41:33 +0800 | [diff] [blame] | 17 | common-obj-y += filter-mirror.o |
Zhang Chen | 7dce4e6 | 2016-09-27 10:22:26 +0800 | [diff] [blame] | 18 | common-obj-y += colo-compare.o |
Zhang Chen | 59509ec | 2016-09-27 10:22:27 +0800 | [diff] [blame] | 19 | common-obj-y += colo.o |
Zhang Chen | e6eee8a | 2016-09-27 10:22:32 +0800 | [diff] [blame] | 20 | common-obj-y += filter-rewriter.o |
Pavel Dovgalyuk | 646c547 | 2016-09-26 11:08:21 +0300 | [diff] [blame] | 21 | common-obj-y += filter-replay.o |
Thomas Huth | 4348300 | 2017-04-03 14:05:16 +0200 | [diff] [blame] | 22 | |
| 23 | tap-obj-$(CONFIG_LINUX) = tap-linux.o |
| 24 | tap-obj-$(CONFIG_BSD) = tap-bsd.o |
| 25 | tap-obj-$(CONFIG_SOLARIS) = tap-solaris.o |
| 26 | tap-obj-y ?= tap-stub.o |
| 27 | common-obj-$(CONFIG_POSIX) += tap.o $(tap-obj-y) |
| 28 | common-obj-$(CONFIG_WIN32) += tap-win32.o |
Fam Zheng | e2ad6f1 | 2017-09-07 16:35:52 +0800 | [diff] [blame] | 29 | |
| 30 | vde.o-libs = $(VDE_LIBS) |
Pavel Pisa | d18957d | 2018-01-27 17:41:07 +0100 | [diff] [blame] | 31 | |
| 32 | common-obj-$(CONFIG_CAN_BUS) += can/ |