Add types for NTR selection method
[cascardo/ovs.git] / include / openflow / automake.mk
1 openflowincludedir = $(includedir)/openflow
2 openflowinclude_HEADERS = \
3         include/openflow/netronome-ext.h \
4         include/openflow/nicira-ext.h \
5         include/openflow/openflow-1.0.h \
6         include/openflow/openflow-1.1.h \
7         include/openflow/openflow-1.2.h \
8         include/openflow/openflow-1.3.h \
9         include/openflow/openflow-1.4.h \
10         include/openflow/openflow-1.5.h \
11         include/openflow/openflow-common.h \
12         include/openflow/openflow.h
13
14 if HAVE_PYTHON
15 SUFFIXES += .h .hstamp
16
17 .h.hstamp:
18         $(AM_V_GEN)$(run_python) $(srcdir)/build-aux/check-structs -I$(srcdir)/include $< && \
19         touch $@
20
21 HSTAMP_FILES = $(openflowinclude_HEADERS:.h=.hstamp)
22 CLEANFILES += $(HSTAMP_FILES)
23 ALL_LOCAL += $(HSTAMP_FILES)
24 $(HSTAMP_FILES): build-aux/check-structs $(openflowinclude_HEADERS)
25 endif
26
27 EXTRA_DIST += build-aux/check-structs
28