ovs-test: A new tool that allows to diagnose connectivity and performance issues
[sliver-openvswitch.git] / python / automake.mk
diff --git a/python/automake.mk b/python/automake.mk
new file mode 100644 (file)
index 0000000..089ef36
--- /dev/null
@@ -0,0 +1,56 @@
+run_python = PYTHONPATH=$(top_srcdir)/python:$$PYTHON_PATH $(PYTHON)
+
+ovstest_pyfiles = \
+       python/ovstest/__init__.py \
+       python/ovstest/args.py \
+       python/ovstest/rpcserver.py \
+       python/ovstest/tcp.py \
+       python/ovstest/udp.py \
+       python/ovstest/util.py
+
+ovs_pyfiles = \
+       python/ovs/__init__.py \
+       python/ovs/daemon.py \
+       python/ovs/db/__init__.py \
+       python/ovs/db/data.py \
+       python/ovs/db/error.py \
+       python/ovs/db/idl.py \
+       python/ovs/db/parser.py \
+       python/ovs/db/schema.py \
+       python/ovs/db/types.py \
+       python/ovs/fatal_signal.py \
+       python/ovs/json.py \
+       python/ovs/jsonrpc.py \
+       python/ovs/ovsuuid.py \
+       python/ovs/poller.py \
+       python/ovs/process.py \
+       python/ovs/reconnect.py \
+       python/ovs/socket_util.py \
+       python/ovs/stream.py \
+       python/ovs/timeval.py \
+       python/ovs/vlog.py \
+       python/ovs/util.py
+EXTRA_DIST += $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
+
+if HAVE_PYTHON
+nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
+ovs-install-data-local:
+       $(MKDIR_P) python/ovs
+       (echo "import os" && \
+        echo 'PKGDATADIR = os.environ.get("OVS_PKGDATADIR", """$(pkgdatadir)""")' && \
+        echo 'RUNDIR = os.environ.get("OVS_RUNDIR", """@RUNDIR@""")' && \
+        echo 'LOGDIR = os.environ.get("OVS_LOGDIR", """@LOGDIR@""")' && \
+        echo 'BINDIR = os.environ.get("OVS_BINDIR", """$(bindir)""")') \
+               > python/ovs/dirs.py.tmp
+       $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/python/ovs
+       $(INSTALL_DATA) python/ovs/dirs.py.tmp $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
+       rm python/ovs/dirs.py.tmp
+else
+ovs-install-data-local:
+       @:
+endif
+install-data-local: ovs-install-data-local
+
+UNINSTALL_LOCAL += ovs-uninstall-local
+ovs-uninstall-local:
+       rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py