2011-10-31 14:56:08 -07:00
|
|
|
ovstest_pyfiles = \
|
|
|
|
python/ovstest/__init__.py \
|
|
|
|
python/ovstest/args.py \
|
|
|
|
python/ovstest/rpcserver.py \
|
|
|
|
python/ovstest/tcp.py \
|
2012-06-28 15:52:40 -07:00
|
|
|
python/ovstest/tests.py \
|
2011-10-31 14:56:08 -07:00
|
|
|
python/ovstest/udp.py \
|
2012-03-29 19:03:08 -07:00
|
|
|
python/ovstest/util.py \
|
|
|
|
python/ovstest/vswitch.py
|
2011-10-31 14:56:08 -07:00
|
|
|
|
2010-08-25 10:26:40 -07:00
|
|
|
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 \
|
2012-05-14 11:26:36 -07:00
|
|
|
python/ovs/unixctl/__init__.py \
|
|
|
|
python/ovs/unixctl/client.py \
|
|
|
|
python/ovs/unixctl/server.py \
|
2012-02-16 19:15:01 -08:00
|
|
|
python/ovs/util.py \
|
2012-02-29 17:20:03 -08:00
|
|
|
python/ovs/version.py \
|
2012-02-16 19:15:01 -08:00
|
|
|
python/ovs/vlog.py
|
|
|
|
|
2012-02-28 16:28:08 -08:00
|
|
|
PYFILES = $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
|
|
|
|
EXTRA_DIST += $(PYFILES)
|
|
|
|
PYCOV_CLEAN_FILES += $(PYFILES:.py=.py,cover)
|
2010-08-25 10:26:40 -07:00
|
|
|
|
|
|
|
if HAVE_PYTHON
|
2011-10-31 14:56:08 -07:00
|
|
|
nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
|
2010-08-25 10:26:40 -07:00
|
|
|
ovs-install-data-local:
|
|
|
|
$(MKDIR_P) python/ovs
|
2010-11-29 12:28:26 -08:00
|
|
|
(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
|
2010-08-25 10:26:40 -07:00
|
|
|
$(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
|
2011-06-13 09:37:09 -07:00
|
|
|
else
|
|
|
|
ovs-install-data-local:
|
|
|
|
@:
|
2010-08-25 10:26:40 -07:00
|
|
|
endif
|
|
|
|
install-data-local: ovs-install-data-local
|
|
|
|
|
2011-08-25 10:19:23 -07:00
|
|
|
UNINSTALL_LOCAL += ovs-uninstall-local
|
2010-08-25 10:26:40 -07:00
|
|
|
ovs-uninstall-local:
|
|
|
|
rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
|
2012-02-29 17:20:03 -08:00
|
|
|
|
|
|
|
ALL_LOCAL += $(srcdir)/python/ovs/version.py
|
|
|
|
$(srcdir)/python/ovs/version.py: config.status
|
2012-03-12 10:34:22 -07:00
|
|
|
$(ro_shell) > $(@F).tmp
|
|
|
|
echo 'VERSION = "$(VERSION)"' >> $(@F).tmp
|
|
|
|
if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
|