Files
openflow/datapath/Modules.mk
T
Ben Pfaff b1822e1ff8 Add missing header file to datapath/Modules.mk.
This fixes the generated Debian openflow-datapath-source package.
2008-10-31 14:09:53 -07:00

40 lines
800 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 \
nx_act_snat.c \
nx_msg.c \
table-hash.c \
table-linear.c
openflow_headers = \
chain.h \
compat.h \
crc32.h \
datapath.h \
dp_dev.h \
flow.h \
forward.h \
dp_act.h \
nx_act.h \
nx_act_snat.h \
nx_msg.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)))