2 python/ovstest/__init__.py \
3 python/ovstest/args.py \
4 python/ovstest/rpcserver.py \
5 python/ovstest/tcp.py \
6 python/ovstest/tests.py \
7 python/ovstest/udp.py \
8 python/ovstest/util.py \
9 python/ovstest/vswitch.py
12 python/ovs/__init__.py \
13 python/ovs/daemon.py \
14 python/ovs/db/__init__.py \
15 python/ovs/db/data.py \
16 python/ovs/db/error.py \
17 python/ovs/db/idl.py \
18 python/ovs/db/parser.py \
19 python/ovs/db/schema.py \
20 python/ovs/db/types.py \
21 python/ovs/fatal_signal.py \
23 python/ovs/jsonrpc.py \
24 python/ovs/ovsuuid.py \
25 python/ovs/poller.py \
26 python/ovs/process.py \
27 python/ovs/reconnect.py \
28 python/ovs/socket_util.py \
29 python/ovs/stream.py \
30 python/ovs/timeval.py \
31 python/ovs/unixctl/__init__.py \
32 python/ovs/unixctl/client.py \
33 python/ovs/unixctl/server.py \
35 python/ovs/version.py \
38 PYFILES = $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
39 EXTRA_DIST += $(PYFILES)
40 PYCOV_CLEAN_FILES += $(PYFILES:.py=.py,cover)
43 nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
44 ovs-install-data-local:
46 (echo "import os" && \
47 echo 'PKGDATADIR = os.environ.get("OVS_PKGDATADIR", """$(pkgdatadir)""")' && \
48 echo 'RUNDIR = os.environ.get("OVS_RUNDIR", """@RUNDIR@""")' && \
49 echo 'LOGDIR = os.environ.get("OVS_LOGDIR", """@LOGDIR@""")' && \
50 echo 'BINDIR = os.environ.get("OVS_BINDIR", """$(bindir)""")') \
51 > python/ovs/dirs.py.tmp
52 $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/python/ovs
53 $(INSTALL_DATA) python/ovs/dirs.py.tmp $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
54 rm python/ovs/dirs.py.tmp
56 ovs-install-data-local:
59 install-data-local: ovs-install-data-local
61 UNINSTALL_LOCAL += ovs-uninstall-local
63 rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
65 ALL_LOCAL += $(srcdir)/python/ovs/version.py
66 $(srcdir)/python/ovs/version.py: config.status
67 $(ro_shell) > $(@F).tmp
68 echo 'VERSION = "$(VERSION)"' >> $(@F).tmp
69 if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi