Prepare Open vSwitch 1.1.2 release.
[sliver-openvswitch.git] / datapath / Modules.mk
1 # Some modules should be built and distributed, e.g. openvswitch.
2 #
3 # Some modules should be distributed but not built, e.g. we do not build
4 # veth if the kernel in question already has it.
5 #
6 # Some modules should be built but not distributed, e.g. third-party
7 # hwtable modules.
8 both_modules = openvswitch
9 build_modules = $(both_modules) # Modules to build
10 dist_modules = $(both_modules)  # Modules to distribute
11
12 openvswitch_sources = \
13         actions.c \
14         checksum.c \
15         datapath.c \
16         dp_notify.c \
17         dp_sysfs_dp.c \
18         dp_sysfs_if.c \
19         flow.c \
20         loop_counter.c \
21         table.c \
22         tunnel.c \
23         vlan.c \
24         vport.c \
25         vport-capwap.c \
26         vport-generic.c \
27         vport-gre.c \
28         vport-internal_dev.c \
29         vport-netdev.c \
30         vport-patch.c
31
32 openvswitch_headers = \
33         actions.h \
34         checksum.h \
35         compat.h \
36         datapath.h \
37         dp_sysfs.h \
38         flow.h \
39         loop_counter.h \
40         table.h \
41         tunnel.h \
42         vlan.h \
43         vport.h \
44         vport-generic.h \
45         vport-internal_dev.h \
46         vport-netdev.h
47
48 dist_sources = $(foreach module,$(dist_modules),$($(module)_sources))
49 dist_headers = $(foreach module,$(dist_modules),$($(module)_headers))
50 build_sources = $(foreach module,$(build_modules),$($(module)_sources))
51 build_headers = $(foreach module,$(build_modules),$($(module)_headers))
52 build_links = $(notdir $(build_sources))
53 build_objects = $(notdir $(patsubst %.c,%.o,$(build_sources)))