Files
openflow/datapath/Modules.mk
T
Justin Pettit 1489ca2657 Add support for vendor-defined and variable-length actions.
Allow vendors to define their own actions.  Actions were originally fixed-
length, which was a bit constraining.  Actions now contain a length field,
which gives them more flexibility.
2008-10-03 16:44:13 -07:00

34 lines
718 B
Makefile

all_modules = $(dist_modules)
dist_modules = openflow
openflow_sources = \
chain.c \
crc32.c \
datapath.c \
dp_act.c \
dp_dev.c \
dp_notify.c \
flow.c \
forward.c \
nx_act.c \
table-hash.c \
table-linear.c
openflow_headers = \
chain.h \
compat.h \
crc32.h \
datapath.h \
dp_dev.h \
flow.h \
forward.h \
snap.h \
table.h
dist_sources = $(foreach module,$(dist_modules),$($(module)_sources))
dist_headers = $(foreach module,$(dist_modules),$($(module)_headers))
all_sources = $(foreach module,$(all_modules),$($(module)_sources))
all_headers = $(foreach module,$(all_modules),$($(module)_headers))
all_links = $(notdir $(all_sources))
all_objects = $(notdir $(patsubst %.c,%.o,$(all_sources)))