aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-07-14 15:21:03 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-07-14 15:21:03 +0100
commit533a2a2773f04d175bda34ea2f0202616b68be2b (patch)
tree3ceb7d278f02d43b8733681f26a7cc0cc1ee5ac5 /Makefile
parent1161d825c9343647ceea954aa0e5c908ec717131 (diff)
downloadxen-533a2a2773f04d175bda34ea2f0202616b68be2b.tar.gz
xen-533a2a2773f04d175bda34ea2f0202616b68be2b.tar.bz2
xen-533a2a2773f04d175bda34ea2f0202616b68be2b.zip
stubdom: enable compilation/installation by default
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index ca9f164740..35a09a6aa7 100644
--- a/Makefile
+++ b/Makefile
@@ -15,18 +15,13 @@ include buildconfigs/Rules.mk
# build and install everything into the standard system directories
.PHONY: install
-ifdef CONFIG_STUBDOM
-install: install-stubdom
-endif
-install: install-xen install-kernels install-tools install-docs
+install: install-xen install-kernels install-tools install-stubdom install-docs
.PHONY: build
build: kernels
$(MAKE) -C xen build
$(MAKE) -C tools build
-ifdef CONFIG_STUBDOM
$(MAKE) -C stubdom build
-endif
$(MAKE) -C docs build
# The test target is for unit tests that can run without an installation. Of
@@ -39,10 +34,7 @@ test:
# build and install everything into local dist directory
.PHONY: dist
dist: DESTDIR=$(DISTDIR)/install
-ifdef CONFIG_STUBDOM
-dist: dist-stubdom
-endif
-dist: dist-xen dist-kernels dist-tools dist-docs
+dist: dist-xen dist-kernels dist-tools dist-stubdom dist-docs
$(INSTALL_DIR) $(DISTDIR)/check
$(INSTALL_DATA) ./COPYING $(DISTDIR)
$(INSTALL_DATA) ./README $(DISTDIR)