aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenctl/Makefile
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-03-15 17:56:41 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-03-15 17:56:41 +0000
commit784905204897c004a990a25aed49dcccb6e2da54 (patch)
treea0de0dc03705b308ec662fbaf70748661abb9496 /tools/xenctl/Makefile
parent58ae7777f2bc2910ae57900e33a20fc7ef1e3b7f (diff)
downloadxen-784905204897c004a990a25aed49dcccb6e2da54.tar.gz
xen-784905204897c004a990a25aed49dcccb6e2da54.tar.bz2
xen-784905204897c004a990a25aed49dcccb6e2da54.zip
bitkeeper revision 1.800 (4055ee59_zI1OKOsC2EKXBIYFm3OtA)
console_client.py, __init__.py, setup.py, Makefile: new file Many files: New console-terminal client in xenctl.console_client Python package. New option to xc_dom_create (-c on cmdline or auto_console in defaults file) to automatically become a console client. utils.py: Rename: tools/xc/py/XenoUtil.py -> tools/xenctl/lib/utils.py
Diffstat (limited to 'tools/xenctl/Makefile')
-rw-r--r--tools/xenctl/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/xenctl/Makefile b/tools/xenctl/Makefile
new file mode 100644
index 0000000000..e3583f5dd8
--- /dev/null
+++ b/tools/xenctl/Makefile
@@ -0,0 +1,10 @@
+
+all:
+ python setup.py build
+
+install: all
+ if [ "$(prefix)" = "" ]; then python setup.py install; \
+ else python setup.py install --home="$(prefix)"; fi
+
+clean:
+ rm -rf build *.pyc *.pyo *.o *.a *~