Files
openflow/datapath/Modules.mk
T
Justin Pettit 1400bbb7eb Use device notifier in Linux kernel switch for detecting port status changes.
To report on link status and whether a port is administratively enabled or
disabled, the reference switches poll.  This change uses the Linux kernel's
device notification system, so that polling isn't necessary.
2008-09-19 16:10:28 -07:00

40 lines
789 B
Makefile

all_modules = $(dist_modules)
dist_modules = openflow unit
openflow_sources = \
chain.c \
crc32.c \
datapath.c \
dp_dev.c \
dp_notify.c \
flow.c \
forward.c \
table-hash.c \
table-linear.c \
unit-exports.c
openflow_headers = \
chain.h \
compat.h \
crc32.h \
datapath.h \
dp_dev.h \
flow.h \
forward.h \
snap.h \
table.h \
unit.h
unit_sources = \
crc_t.c \
forward_t.c \
table_t.c \
unit.c
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)))