aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile
blob: 590d8ca21bee99487e5f8d3cce36a0854fdccf71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# 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 balloon
	$(MAKE) -C control
	$(MAKE) -C internal
	$(MAKE) -C misc

install: all
	$(MAKE) -C balloon install
	$(MAKE) -C control install
	$(MAKE) -C internal install
	$(MAKE) -C misc install

clean:
	$(MAKE) -C balloon clean
	$(MAKE) -C control clean
	$(MAKE) -C internal clean
	$(MAKE) -C misc clean