1 # Some modules should be built and distributed, e.g. openvswitch.
3 # Some modules should be built but not distributed, e.g. third-party
5 both_modules = openvswitch
6 build_modules = $(both_modules) # Modules to build
7 dist_modules = $(both_modules) # Modules to distribute
9 openvswitch_sources = \
20 vport-internal_dev.c \
25 openvswitch_headers = \
34 vport-internal_dev.h \
37 openvswitch_extras = \
40 dist_sources = $(foreach module,$(dist_modules),$($(module)_sources))
41 dist_headers = $(foreach module,$(dist_modules),$($(module)_headers))
42 dist_extras = $(foreach module,$(dist_modules),$($(module)_extras))
43 build_sources = $(foreach module,$(build_modules),$($(module)_sources))
44 build_headers = $(foreach module,$(build_modules),$($(module)_headers))
45 build_links = $(notdir $(build_sources))
46 build_objects = $(notdir $(patsubst %.c,%.o,$(build_sources)))