Use device notifier in Linux kernel switch for detecting port status changes.
[sliver-openvswitch.git] / datapath / Modules.mk
index 6c0509c..f21af16 100644 (file)
@@ -5,8 +5,8 @@ openflow_sources = \
        chain.c \
        crc32.c \
        datapath.c \
-       datapath_t.c \
        dp_dev.c \
+       dp_notify.c \
        flow.c \
        forward.c \
        table-hash.c \
@@ -18,7 +18,6 @@ openflow_headers = \
        compat.h \
        crc32.h \
        datapath.h \
-       datapath_t.h \
        dp_dev.h \
        flow.h \
        forward.h \
@@ -36,6 +35,5 @@ 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_objects = $(patsubst %.c,%.o,$(all_sources))
-all_objdirs = $(addprefix $(builddir)/,$(sort $(dir $(all_objects))))
-all_dummies = $(addsuffix /.dummy,$(all_objdirs))
+all_links = $(notdir $(all_sources))
+all_objects = $(notdir $(patsubst %.c,%.o,$(all_sources)))