]>
Commit | Line | Data |
---|---|---|
1 | common-obj-y = net.o queue.o checksum.o util.o hub.o | |
2 | common-obj-y += socket.o | |
3 | common-obj-y += dump.o | |
4 | common-obj-y += eth.o | |
5 | common-obj-$(CONFIG_L2TPV3) += l2tpv3.o | |
6 | common-obj-$(CONFIG_POSIX) += vhost-user.o | |
7 | common-obj-$(CONFIG_SLIRP) += slirp.o | |
8 | common-obj-$(CONFIG_VDE) += vde.o | |
9 | common-obj-$(CONFIG_NETMAP) += netmap.o | |
10 | common-obj-y += filter.o | |
11 | common-obj-y += filter-buffer.o | |
12 | common-obj-y += filter-mirror.o | |
13 | common-obj-y += colo-compare.o | |
14 | common-obj-y += colo.o | |
15 | common-obj-y += filter-rewriter.o | |
16 | common-obj-y += filter-replay.o | |
17 | ||
18 | tap-obj-$(CONFIG_LINUX) = tap-linux.o | |
19 | tap-obj-$(CONFIG_BSD) = tap-bsd.o | |
20 | tap-obj-$(CONFIG_SOLARIS) = tap-solaris.o | |
21 | tap-obj-y ?= tap-stub.o | |
22 | common-obj-$(CONFIG_POSIX) += tap.o $(tap-obj-y) | |
23 | common-obj-$(CONFIG_WIN32) += tap-win32.o | |
24 | ||
25 | vde.o-libs = $(VDE_LIBS) | |
26 | ||
27 | common-obj-$(CONFIG_CAN_BUS) += can/ |