summaryrefslogtreecommitdiff
path: root/python/automake.mk
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2012-02-16 19:15:01 -0800
committerEthan Jackson <ethan@nicira.com>2012-03-02 13:30:32 -0800
commit0a68ffd2347e96447c5b4751c9e5ac65d5100a56 (patch)
tree6fa7d0da1333660e990612fe740cfe128e6d66f3 /python/automake.mk
parentffc86c0db7d5ad44cd0ec513d08f0160afa06a9c (diff)
downloadopenvswitch-0a68ffd2347e96447c5b4751c9e5ac65d5100a56.tar.gz
python: Port unixctl to Python.
Many of the currently implemented Python daemons, and likely many daemons to be implemented in the future, could benefit from unixctl support even if only to implement "exit" and "version" commands. This patch implements unixctl in Python. Signed-off-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'python/automake.mk')
-rw-r--r--python/automake.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/automake.mk b/python/automake.mk
index 7ea31186c..f9d2c575f 100644
--- a/python/automake.mk
+++ b/python/automake.mk
@@ -28,9 +28,11 @@ ovs_pyfiles = \
python/ovs/socket_util.py \
python/ovs/stream.py \
python/ovs/timeval.py \
+ python/ovs/unixctl.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)