aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2003-11-21 16:34:57 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2003-11-21 16:34:57 +0000
commit605b7a945d35726d195ac668acacd65fd491cdde (patch)
tree324f0cf6e09a5457d13eace1c4ec1f3573a51f8c /Makefile
parent188b984c451660780d0669dbfcc84dfdd3aa3b8e (diff)
downloadxen-605b7a945d35726d195ac668acacd65fd491cdde.tar.gz
xen-605b7a945d35726d195ac668acacd65fd491cdde.tar.bz2
xen-605b7a945d35726d195ac668acacd65fd491cdde.zip
bitkeeper revision 1.626 (3fbe3eb1WmztnxBIFxm56r8gAVwZig)
Many files: Some fixes. Also now have a new Makefile target 'dist' which installs stuff to local install directory. Target 'install' now actually does what you expect by installing under /usr xi_stopdom.py: Rename: tools/misc/xi_stopdom.py -> tools/examples/xi_stopdom.py xi_listdoms.py: Rename: tools/misc/xi_listdoms.py -> tools/examples/xi_listdoms.py xi_destroydom.py: Rename: tools/misc/xi_destroydom.py -> tools/examples/xi_destroydom.py xi_createlinuxdom.py: Rename: tools/misc/xi_createlinuxdom.py -> tools/examples/xi_createlinuxdom.py
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 5 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 2196692122..e429b6b1bf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,11 @@
-#
+
# Grand Unified Makefile for Xen.
#
-# Keir Fraser, 6/5/2003
-#
# Builds everything except Xenolinux:
# cd xenolinux-<version>-sparse
# ./mkbuildtree <build dir>
# cd <build dir> && make oldconfig && make dep && make bzImage
# (<build dir> should be a vanilla linux tree with matching version)
-#
-# If you get errors in tools/domctl or tools/vdmanager, then you need
-# the latest Java 2 SDK on your execution path: <http://java.sun.com>
-# Also, you will need Apache's 'ant' build tool: <http://ant.apache.org>
-#
-# If you received this source as part of a Xen release, you should find
-# that appropriate versions of the build tools are already installed in
-# the initial system setup.
all:
$(MAKE) -C xen
@@ -25,6 +15,10 @@ install: all
$(MAKE) -C xen install
$(MAKE) -C tools install
+dist: all
+ $(MAKE) -C xen dist
+ $(MAKE) -C tools dist
+
clean:
$(MAKE) -C xen clean
$(MAKE) -C tools clean