mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +00:00
OpenFlow 1.6 adds support for EUI-64 addresses for ports, and extends the maximum length of OpenFlow port names from 16 to 64 bytes. ONF-JIRA: EXT-566 Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Andy Zhou <azhou@ovn.org>
31 lines
861 B
Makefile
31 lines
861 B
Makefile
openflowincludedir = $(includedir)/openflow
|
|
openflowinclude_HEADERS = \
|
|
include/openflow/intel-ext.h \
|
|
include/openflow/netronome-ext.h \
|
|
include/openflow/nicira-ext.h \
|
|
include/openflow/openflow-1.0.h \
|
|
include/openflow/openflow-1.1.h \
|
|
include/openflow/openflow-1.2.h \
|
|
include/openflow/openflow-1.3.h \
|
|
include/openflow/openflow-1.4.h \
|
|
include/openflow/openflow-1.5.h \
|
|
include/openflow/openflow-1.6.h \
|
|
include/openflow/openflow-common.h \
|
|
include/openflow/openflow.h
|
|
|
|
if HAVE_PYTHON
|
|
SUFFIXES += .h .hstamp
|
|
|
|
.h.hstamp:
|
|
$(AM_V_GEN)$(run_python) $(srcdir)/build-aux/check-structs -I$(srcdir)/include $< && \
|
|
touch $@
|
|
|
|
HSTAMP_FILES = $(openflowinclude_HEADERS:.h=.hstamp)
|
|
CLEANFILES += $(HSTAMP_FILES)
|
|
ALL_LOCAL += $(HSTAMP_FILES)
|
|
$(HSTAMP_FILES): build-aux/check-structs $(openflowinclude_HEADERS)
|
|
endif
|
|
|
|
EXTRA_DIST += build-aux/check-structs
|
|
|