1 sbin_PROGRAMS += vswitchd/ovs-vswitchd
2 man_MANS += vswitchd/ovs-vswitchd.8
4 vswitchd/ovs-vswitchd.8
6 vswitchd_ovs_vswitchd_SOURCES = \
9 vswitchd/ovs-vswitchd.c \
10 vswitchd/system-stats.c \
11 vswitchd/system-stats.h \
12 vswitchd/xenserver.c \
14 vswitchd_ovs_vswitchd_LDADD = \
15 ofproto/libofproto.la \
17 lib/libopenvswitch.la \
19 EXTRA_DIST += vswitchd/INTERNALS
20 MAN_ROOTS += vswitchd/ovs-vswitchd.8.in
22 # vswitch schema and IDL
23 EXTRA_DIST += vswitchd/vswitch.ovsschema
24 pkgdata_DATA += vswitchd/vswitch.ovsschema
28 # If "python" or "dot" is not available, then we do not add graphical diagram
29 # to the documentation.
32 vswitchd/vswitch.gv: ovsdb/ovsdb-dot.in vswitchd/vswitch.ovsschema
33 $(OVSDB_DOT) --no-arrows $(srcdir)/vswitchd/vswitch.ovsschema > $@
34 vswitchd/vswitch.pic: vswitchd/vswitch.gv ovsdb/dot2pic
35 (dot -T plain < vswitchd/vswitch.gv | $(srcdir)/ovsdb/dot2pic -f 3) > $@;
36 VSWITCH_PIC = vswitchd/vswitch.pic
37 VSWITCH_DOT_DIAGRAM_ARG = --er-diagram=$(VSWITCH_PIC)
38 DISTCLEANFILES += vswitchd/vswitch.gv vswitchd/vswitch.pic
42 # vswitch schema documentation
43 EXTRA_DIST += vswitchd/vswitch.xml
44 DISTCLEANFILES += vswitchd/ovs-vswitchd.conf.db.5
45 man_MANS += vswitchd/ovs-vswitchd.conf.db.5
46 vswitchd/ovs-vswitchd.conf.db.5: \
47 ovsdb/ovsdb-doc vswitchd/vswitch.xml vswitchd/vswitch.ovsschema \
50 --title="ovs-vswitchd.conf.db" \
51 $(VSWITCH_DOT_DIAGRAM_ARG) \
52 --version=$(VERSION) \
53 $(srcdir)/vswitchd/vswitch.ovsschema \
54 $(srcdir)/vswitchd/vswitch.xml > $@.tmp
57 # Version checking for vswitch.ovsschema.
58 ALL_LOCAL += vswitchd/vswitch.ovsschema.stamp
59 vswitchd/vswitch.ovsschema.stamp: vswitchd/vswitch.ovsschema
60 @sum=`sed '/cksum/d' $? | cksum`; \
61 expected=`sed -n 's/.*"cksum": "\(.*\)".*/\1/p' $?`; \
62 if test "X$$sum" = "X$$expected"; then \
65 ln=`sed -n '/"cksum":/=' $?`; \
66 echo >&2 "$?:$$ln: checksum \"$$sum\" does not match (you should probably update the version number and fix the checksum)"; \
69 CLEANFILES += vswitchd/vswitch.ovsschema.stamp
71 # Clean up generated files from older OVS versions. (This is important so that
72 # #include "vswitch-idl.h" doesn't get the wrong copy.)
73 CLEANFILES += vswitchd/vswitch-idl.c vswitchd/vswitch-idl.h