aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e429b6b1bfc8e998cc31fd32e011c5557a235f6c (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
# Grand Unified Makefile for Xen.
#
# 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)

all:	
	$(MAKE) -C xen
	$(MAKE) -C tools

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