]>
Commit | Line | Data |
---|---|---|
fd9400b3 | 1 | common-obj-y = net.o queue.o checksum.o util.o hub.o |
d8469de6 PB |
2 | common-obj-y += socket.o |
3 | common-obj-y += dump.o | |
75020a70 | 4 | common-obj-y += eth.o |
50510ea2 | 5 | common-obj-y += announce.o |
015a33bd | 6 | common-obj-$(CONFIG_L2TPV3) += l2tpv3.o |
56f41de7 PB |
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 | |
d8469de6 | 10 | common-obj-$(CONFIG_SLIRP) += slirp.o |
675b9b53 MAL |
11 | slirp.o-cflags := $(SLIRP_CFLAGS) |
12 | slirp.o-libs := $(SLIRP_LIBS) | |
d8469de6 | 13 | common-obj-$(CONFIG_VDE) += vde.o |
58952137 | 14 | common-obj-$(CONFIG_NETMAP) += netmap.o |
fdccce45 | 15 | common-obj-y += filter.o |
7dbb11c8 | 16 | common-obj-y += filter-buffer.o |
f6d3afb5 | 17 | common-obj-y += filter-mirror.o |
7dce4e6f | 18 | common-obj-y += colo-compare.o |
59509ec1 | 19 | common-obj-y += colo.o |
e6eee8ab | 20 | common-obj-y += filter-rewriter.o |
646c5478 | 21 | common-obj-y += filter-replay.o |
4348300e TH |
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 | |
e2ad6f16 FZ |
29 | |
30 | vde.o-libs = $(VDE_LIBS) | |
d18957db PP |
31 | |
32 | common-obj-$(CONFIG_CAN_BUS) += can/ |