02d413ecce07097019de45065ef5c4101312e957
[sliver-openvswitch.git] / vswitchd / automake.mk
1 sbin_PROGRAMS += vswitchd/ovs-vswitchd
2 man_MANS += vswitchd/ovs-vswitchd.8
3 DISTCLEANFILES += \
4         vswitchd/ovs-vswitchd.8
5
6 vswitchd_ovs_vswitchd_SOURCES = \
7         vswitchd/bridge.c \
8         vswitchd/bridge.h \
9         vswitchd/ovs-vswitchd.c \
10         vswitchd/system-stats.c \
11         vswitchd/system-stats.h \
12         vswitchd/xenserver.c \
13         vswitchd/xenserver.h
14 vswitchd_ovs_vswitchd_LDADD = \
15         ofproto/libofproto.a \
16         lib/libsflow.a \
17         lib/libopenvswitch.a \
18         $(SSL_LIBS)
19 EXTRA_DIST += vswitchd/INTERNALS
20 MAN_ROOTS += vswitchd/ovs-vswitchd.8.in
21
22 # vswitch schema and IDL
23 EXTRA_DIST += vswitchd/vswitch.ovsschema
24 pkgdata_DATA += vswitchd/vswitch.ovsschema
25
26 # vswitch E-R diagram
27 #
28 # If "python" or "dot" is not available, then we do not add graphical diagram
29 # to the documentation.
30 if HAVE_PYTHON
31 if HAVE_DOT
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
39 endif
40 endif
41
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 \
48         $(VSWITCH_PIC)
49         $(OVSDB_DOC) \
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
55         mv $@.tmp $@
56
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 \
63           touch $@; \
64         else \
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)"; \
67           exit 1; \
68         fi
69 CLEANFILES += vswitchd/vswitch.ovsschema.stamp
70
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