X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=python%2Fautomake.mk;h=96869e30e3ba1bf073ae99c520dd5f0880eefd71;hb=f4d458c55089f36710e5c2f36b578d76702b2789;hp=7ea31186c8e146a84a8137da8017d5d3c3a231b1;hpb=4fb7d8142603008589c79a6e5caed3a6da8f7188;p=openvswitch diff --git a/python/automake.mk b/python/automake.mk index 7ea31186..96869e30 100644 --- a/python/automake.mk +++ b/python/automake.mk @@ -1,12 +1,11 @@ -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 + python/ovstest/util.py \ + python/ovstest/vswitch.py ovs_pyfiles = \ python/ovs/__init__.py \ @@ -28,9 +27,13 @@ ovs_pyfiles = \ python/ovs/socket_util.py \ python/ovs/stream.py \ python/ovs/timeval.py \ + python/ovs/unixctl/__init__.py \ + python/ovs/unixctl/client.py \ + python/ovs/unixctl/server.py \ + python/ovs/util.py \ python/ovs/version.py \ - python/ovs/vlog.py \ - python/ovs/util.py + python/ovs/vlog.py + PYFILES = $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles) EXTRA_DIST += $(PYFILES) PYCOV_CLEAN_FILES += $(PYFILES:.py=.py,cover) @@ -60,7 +63,6 @@ ovs-uninstall-local: ALL_LOCAL += $(srcdir)/python/ovs/version.py $(srcdir)/python/ovs/version.py: config.status - $(ro_shell) > $@.tmp - echo 'VERSION = "$(VERSION)"' >> $@.tmp - echo 'BUILDNR = "$(BUILDNR)"' >> $@.tmp - mv $@.tmp $@ + $(ro_shell) > $(@F).tmp + echo 'VERSION = "$(VERSION)"' >> $(@F).tmp + if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi