Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / net / openvswitch / Makefile
1 #
2 # Makefile for Open vSwitch.
3 #
4
5 obj-$(CONFIG_OPENVSWITCH) += openvswitch.o
6
7 openvswitch-y := \
8 actions.o \
9 datapath.o \
10 dp_notify.o \
11 flow.o \
12 flow_netlink.o \
13 flow_table.o \
14 vport.o \
15 vport-internal_dev.o \
16 vport-netdev.o
17
18 ifneq ($(CONFIG_OPENVSWITCH_GENEVE),)
19 openvswitch-y += vport-geneve.o
20 endif
21
22 ifneq ($(CONFIG_OPENVSWITCH_VXLAN),)
23 openvswitch-y += vport-vxlan.o
24 endif
25
26 ifneq ($(CONFIG_OPENVSWITCH_GRE),)
27 openvswitch-y += vport-gre.o
28 endif
This page took 0.030237 seconds and 5 git commands to generate.