ia64/xen-unstable
changeset 424:8b178f8d401d
bitkeeper revision 1.207 (3eb788deeBcKbOjJTp9dz6uBjMSLLQ)
Makefile:
new file
Fixes to build system. New root Makefile.
Makefile:
new file
Fixes to build system. New root Makefile.
author | kaf24@scramble.cl.cam.ac.uk |
---|---|
date | Tue May 06 10:05:18 2003 +0000 (2003-05-06) |
parents | 67a66de6d9a0 |
children | 656d429e294c |
files | .rootkeys Makefile tools/domctl/Makefile tools/vdmanager/Makefile |
line diff
1.1 --- a/.rootkeys Tue May 06 09:36:15 2003 +0000 1.2 +++ b/.rootkeys Tue May 06 10:05:18 2003 +0000 1.3 @@ -1,6 +1,7 @@ 1.4 3ddb6b0bKlMz_dz-M59a1mkUa1lASw BitKeeper/etc/config 1.5 3ddb6b0buTaC5zg1_a8FoAR9FWi_mw BitKeeper/etc/ignore 1.6 3ddb79c9_hgSp-gsQm8HqWM_9W3B_A BitKeeper/etc/logging_ok 1.7 +3eb788d6Kleck_Cut0ouGneviGzliQ Makefile 1.8 3e6377b24eQqYMsDi9XrFkIgTzZ47A tools/balloon/Makefile 1.9 3e6377d6eiFjF1hHIS6JEIOFk62xSA tools/balloon/README 1.10 3e6377dbGcgnisKw16DPCaND7oGO3Q tools/balloon/balloon.c 1.11 @@ -41,6 +42,7 @@ 3eb781fdcJ0fF7rWfzAOArW-x4-gwA tools/int 1.12 3eb781fd8oRfPgH7qTh7xvgmwD6NgA tools/internal/xi_start.c 1.13 3eb781fd0Eo9K1jEFCSAVzO51i_ngg tools/internal/xi_stop.c 1.14 3eb781fd7211MZsLxJSiuy7W4KnJXg tools/internal/xi_vifinit 1.15 +3eb788dbUz7cB-Gj-Y2mcQUzxWN3NQ tools/vdmanager/Makefile 1.16 3ea53c6dz47kAOwpk54f8_zOAQ5ngw tools/vdmanager/build.xml 1.17 3eaff785PwN0C3-xhCf_zMCL27JIgQ tools/vdmanager/notes.xml 1.18 3ea53c6dE-azH1i1VJmJMp9SHnETkQ tools/vdmanager/src/uk/ac/cam/cl/xeno/vdmanager/Extent.java
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/Makefile Tue May 06 10:05:18 2003 +0000 2.3 @@ -0,0 +1,35 @@ 2.4 +# 2.5 +# Grand Unified Makefile for Xen. 2.6 +# 2.7 +# Keir Fraser, 6/5/2003 2.8 +# 2.9 +# Builds everything except Xenolinux: 2.10 +# cd xenolinux-<version>-sparse 2.11 +# ./mkbuildtree <build dir> 2.12 +# cd <build dir> && make oldconfig && make dep && make bzImage 2.13 +# (<build dir> should be a vanilla linux tree with matching version) 2.14 +# 2.15 +# If you get errors in tools/domctl or tools/vdmanager, then you need 2.16 +# the latest Java 2 SDK on your execution path: <http://java.sun.com> 2.17 +# Also, you will need Apache's 'ant' build tool: <http://ant.apache.org> 2.18 +# 2.19 +# If you received this sourec as part of a Xen release, you should find 2.20 +# that appropriate versions of the build tools are already installed in 2.21 +# the initial system setup. 2.22 + 2.23 +all: 2.24 + $(MAKE) -C xen 2.25 + $(MAKE) -C tools/balloon 2.26 + $(MAKE) -C tools/domain_builder 2.27 + $(MAKE) -C tools/domctl 2.28 + $(MAKE) -C tools/internal 2.29 + $(MAKE) -C tools/vdmanager 2.30 + 2.31 +clean: 2.32 + $(MAKE) -C xen clean 2.33 + $(MAKE) -C tools/balloon clean 2.34 + $(MAKE) -C tools/domain_builder clean 2.35 + $(MAKE) -C tools/domctl clean 2.36 + $(MAKE) -C tools/internal clean 2.37 + $(MAKE) -C tools/vdmanager clean 2.38 +