2 noinst_LIBRARIES += ovsdb/libovsdb.a
3 ovsdb_libovsdb_a_SOURCES = \
11 ovsdb/jsonrpc-server.c \
12 ovsdb/jsonrpc-server.h \
17 ovsdb/ovsdb-server.c \
31 ovsdb/remote-active.man \
32 ovsdb/remote-passive.man
35 bin_PROGRAMS += ovsdb/ovsdb-tool
36 ovsdb_ovsdb_tool_SOURCES = ovsdb/ovsdb-tool.c
37 ovsdb_ovsdb_tool_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a
39 man_MANS += ovsdb/ovsdb-tool.1
40 DISTCLEANFILES += ovsdb/ovsdb-tool.1
41 EXTRA_DIST += ovsdb/ovsdb-tool.1.in
44 bin_PROGRAMS += ovsdb/ovsdb-client
45 ovsdb_ovsdb_client_SOURCES = ovsdb/ovsdb-client.c
46 ovsdb_ovsdb_client_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a $(SSL_LIBS)
48 man_MANS += ovsdb/ovsdb-client.1
49 DISTCLEANFILES += ovsdb/ovsdb-client.1
50 EXTRA_DIST += ovsdb/ovsdb-client.1.in
53 sbin_PROGRAMS += ovsdb/ovsdb-server
54 ovsdb_ovsdb_server_SOURCES = ovsdb/ovsdb-server.c
55 ovsdb_ovsdb_server_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a $(SSL_LIBS)
57 man_MANS += ovsdb/ovsdb-server.1
58 DISTCLEANFILES += ovsdb/ovsdb-server.1
59 EXTRA_DIST += ovsdb/ovsdb-server.1.in
65 ovsdb/simplejson/__init__.py \
66 ovsdb/simplejson/_speedups.c \
67 ovsdb/simplejson/decoder.py \
68 ovsdb/simplejson/encoder.py \
69 ovsdb/simplejson/scanner.py \
70 ovsdb/simplejson/tests/__init__.py \
71 ovsdb/simplejson/tests/test_check_circular.py \
72 ovsdb/simplejson/tests/test_decode.py \
73 ovsdb/simplejson/tests/test_default.py \
74 ovsdb/simplejson/tests/test_dump.py \
75 ovsdb/simplejson/tests/test_encode_basestring_ascii.py \
76 ovsdb/simplejson/tests/test_fail.py \
77 ovsdb/simplejson/tests/test_float.py \
78 ovsdb/simplejson/tests/test_indent.py \
79 ovsdb/simplejson/tests/test_pass1.py \
80 ovsdb/simplejson/tests/test_pass2.py \
81 ovsdb/simplejson/tests/test_pass3.py \
82 ovsdb/simplejson/tests/test_recursion.py \
83 ovsdb/simplejson/tests/test_scanstring.py \
84 ovsdb/simplejson/tests/test_separators.py \
85 ovsdb/simplejson/tests/test_unicode.py \
86 ovsdb/simplejson/tool.py
87 noinst_SCRIPTS += ovsdb/ovsdb-idlc
91 DISTCLEANFILES += ovsdb/ovsdb-idlc
93 OVSDB_IDLC = $(PYTHON) $(srcdir)/ovsdb/ovsdb-idlc.in
95 $(OVSDB_IDLC) c-idl-source $< > $@.tmp
98 $(OVSDB_IDLC) c-idl-header $< > $@.tmp
101 EXTRA_DIST += $(OVSIDL_BUILT)
102 BUILT_SOURCES += $(OVSIDL_BUILT)
104 # This must be done late: macros in targets are expanded when the
105 # target line is read, so if this file were to be included before some
106 # other file that added to OVSIDL_BUILT, then those files wouldn't get
109 # However, current versions of Automake seem to output all variable
110 # assignments before any targets, so it doesn't seem to be a problem,
112 $(OVSIDL_BUILT): ovsdb/ovsdb-idlc.in
115 EXTRA_DIST += ovsdb/ovsdb-doc.in
116 noinst_SCRIPTS += ovsdb/ovsdb-doc
117 DISTCLEANFILES += ovsdb/ovsdb-doc
118 OVSDB_DOC = $(PYTHON) $(srcdir)/ovsdb/ovsdb-doc.in
121 EXTRA_DIST += ovsdb/ovsdb-dot.in
122 noinst_SCRIPTS += ovsdb/ovsdb-dot
123 DISTCLEANFILES += ovsdb/ovsdb-dot
124 OVSDB_DOT = $(PYTHON) $(srcdir)/ovsdb/ovsdb-dot.in
126 include ovsdb/ovsdbmonitor/automake.mk