datapath: Add support for lwtunnel
[cascardo/ovs.git] / datapath / Modules.mk
1 # Some modules should be built and distributed, e.g. openvswitch.
2 #
3 # Some modules should be built but not distributed, e.g. third-party
4 # hwtable modules.
5 build_multi_modules = \
6         openvswitch
7 both_modules = \
8         $(build_multi_modules) \
9         vport_geneve \
10         vport_gre \
11         vport_lisp \
12         vport_stt \
13         vport_vxlan
14 # When changing the name of 'build_modules', please also update the
15 # print-build-modules in Makefile.am.
16 build_modules = $(both_modules) # Modules to build
17 dist_modules = $(both_modules)  # Modules to distribute
18
19 openvswitch_sources = \
20         actions.c \
21         datapath.c \
22         dp_notify.c \
23         flow.c \
24         flow_netlink.c \
25         flow_table.c \
26         vport.c \
27         vport-internal_dev.c \
28         vport-netdev.c
29
30 vport_geneve_sources = vport-geneve.c
31 vport_vxlan_sources = vport-vxlan.c
32 vport_gre_sources = vport-gre.c
33 vport_lisp_sources = vport-lisp.c
34 vport_stt_sources = vport-stt.c
35
36 openvswitch_headers = \
37         compat.h \
38         datapath.h \
39         flow.h \
40         flow_netlink.h \
41         flow_table.h \
42         vlan.h \
43         vport.h \
44         vport-internal_dev.h \
45         vport-netdev.h
46
47 openvswitch_extras = \
48         README.md
49
50 dist_sources = $(foreach module,$(dist_modules),$($(module)_sources))
51 dist_headers = $(foreach module,$(dist_modules),$($(module)_headers))
52 dist_extras = $(foreach module,$(dist_modules),$($(module)_extras))
53 build_sources = $(foreach module,$(build_modules),$($(module)_sources))
54 build_headers = $(foreach module,$(build_modules),$($(module)_headers))
55 build_links = $(notdir $(build_sources))
56 build_objects = $(notdir $(patsubst %.c,%.o,$(build_sources)))