Implement initial Python bindings for Open vSwitch database.
[sliver-openvswitch.git] / ovsdb / automake.mk
1 # libovsdb
2 noinst_LIBRARIES += ovsdb/libovsdb.a
3 ovsdb_libovsdb_a_SOURCES = \
4         ovsdb/column.c \
5         ovsdb/column.h \
6         ovsdb/condition.c \
7         ovsdb/condition.h \
8         ovsdb/execution.c \
9         ovsdb/file.c \
10         ovsdb/file.h \
11         ovsdb/jsonrpc-server.c \
12         ovsdb/jsonrpc-server.h \
13         ovsdb/log.c \
14         ovsdb/log.h \
15         ovsdb/mutation.c \
16         ovsdb/mutation.h \
17         ovsdb/ovsdb-server.c \
18         ovsdb/ovsdb.c \
19         ovsdb/ovsdb.h \
20         ovsdb/query.c \
21         ovsdb/query.h \
22         ovsdb/row.c \
23         ovsdb/row.h \
24         ovsdb/table.c \
25         ovsdb/table.h \
26         ovsdb/trigger.c \
27         ovsdb/trigger.h \
28         ovsdb/transaction.c \
29         ovsdb/transaction.h
30 EXTRA_DIST += \
31         ovsdb/remote-active.man \
32         ovsdb/remote-passive.man
33
34 # ovsdb-tool
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
38 # ovsdb-tool.1
39 man_MANS += ovsdb/ovsdb-tool.1
40 DISTCLEANFILES += ovsdb/ovsdb-tool.1
41 EXTRA_DIST += ovsdb/ovsdb-tool.1.in
42
43 # ovsdb-client
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)
47 # ovsdb-client.1
48 man_MANS += ovsdb/ovsdb-client.1
49 DISTCLEANFILES += ovsdb/ovsdb-client.1
50 EXTRA_DIST += ovsdb/ovsdb-client.1.in
51
52 # ovsdb-server
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)
56 # ovsdb-server.1
57 man_MANS += ovsdb/ovsdb-server.1
58 DISTCLEANFILES += ovsdb/ovsdb-server.1
59 EXTRA_DIST += ovsdb/ovsdb-server.1.in
60
61 # ovsdb-idlc
62 EXTRA_DIST += \
63         ovsdb/SPECS \
64         ovsdb/simplejson/__init__.py \
65         ovsdb/simplejson/_speedups.c                            \
66         ovsdb/simplejson/decoder.py                             \
67         ovsdb/simplejson/encoder.py                             \
68         ovsdb/simplejson/scanner.py                             \
69         ovsdb/simplejson/tests/__init__.py                      \
70         ovsdb/simplejson/tests/test_check_circular.py           \
71         ovsdb/simplejson/tests/test_decode.py                   \
72         ovsdb/simplejson/tests/test_default.py                  \
73         ovsdb/simplejson/tests/test_dump.py                     \
74         ovsdb/simplejson/tests/test_encode_basestring_ascii.py  \
75         ovsdb/simplejson/tests/test_fail.py                     \
76         ovsdb/simplejson/tests/test_float.py                    \
77         ovsdb/simplejson/tests/test_indent.py                   \
78         ovsdb/simplejson/tests/test_pass1.py                    \
79         ovsdb/simplejson/tests/test_pass2.py                    \
80         ovsdb/simplejson/tests/test_pass3.py                    \
81         ovsdb/simplejson/tests/test_recursion.py                \
82         ovsdb/simplejson/tests/test_scanstring.py               \
83         ovsdb/simplejson/tests/test_separators.py               \
84         ovsdb/simplejson/tests/test_unicode.py                  \
85         ovsdb/simplejson/tool.py
86 noinst_SCRIPTS += ovsdb/ovsdb-idlc 
87 EXTRA_DIST += \
88         ovsdb/ovsdb-idlc.in \
89         ovsdb/ovsdb-idlc.1
90 DISTCLEANFILES += ovsdb/ovsdb-idlc
91 SUFFIXES += .ovsidl
92 OVSDB_IDLC = $(run_python) $(srcdir)/ovsdb/ovsdb-idlc.in
93 .ovsidl.c:
94         $(OVSDB_IDLC) c-idl-source $< > $@.tmp
95         mv $@.tmp $@
96 .ovsidl.h:
97         $(OVSDB_IDLC) c-idl-header $< > $@.tmp
98         mv $@.tmp $@
99
100 EXTRA_DIST += $(OVSIDL_BUILT)
101 BUILT_SOURCES += $(OVSIDL_BUILT)
102
103 # This must be done late: macros in targets are expanded when the
104 # target line is read, so if this file were to be included before some
105 # other file that added to OVSIDL_BUILT, then those files wouldn't get
106 # the dependency.
107 #
108 # However, current versions of Automake seem to output all variable
109 # assignments before any targets, so it doesn't seem to be a problem,
110 # at least for now.
111 $(OVSIDL_BUILT): ovsdb/ovsdb-idlc.in
112
113 # ovsdb-doc
114 EXTRA_DIST += ovsdb/ovsdb-doc.in
115 noinst_SCRIPTS += ovsdb/ovsdb-doc
116 DISTCLEANFILES += ovsdb/ovsdb-doc
117 OVSDB_DOC = $(run_python) $(srcdir)/ovsdb/ovsdb-doc.in
118
119 # ovsdb-dot
120 EXTRA_DIST += ovsdb/ovsdb-dot.in
121 noinst_SCRIPTS += ovsdb/ovsdb-dot
122 DISTCLEANFILES += ovsdb/ovsdb-dot
123 OVSDB_DOT = $(run_python) $(srcdir)/ovsdb/ovsdb-dot.in
124
125 include ovsdb/ovsdbmonitor/automake.mk