debuggers.hg
changeset 18090:63317b6c3eab
stubdom: enable compilation/installation by default
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Mon Jul 14 15:21:03 2008 +0100 (2008-07-14) |
parents | e3ead65e75b2 |
children | 750eee596adf |
files | Makefile |
line diff
1.1 --- a/Makefile Mon Jul 14 15:20:35 2008 +0100 1.2 +++ b/Makefile Mon Jul 14 15:21:03 2008 +0100 1.3 @@ -15,18 +15,13 @@ include buildconfigs/Rules.mk 1.4 1.5 # build and install everything into the standard system directories 1.6 .PHONY: install 1.7 -ifdef CONFIG_STUBDOM 1.8 -install: install-stubdom 1.9 -endif 1.10 -install: install-xen install-kernels install-tools install-docs 1.11 +install: install-xen install-kernels install-tools install-stubdom install-docs 1.12 1.13 .PHONY: build 1.14 build: kernels 1.15 $(MAKE) -C xen build 1.16 $(MAKE) -C tools build 1.17 -ifdef CONFIG_STUBDOM 1.18 $(MAKE) -C stubdom build 1.19 -endif 1.20 $(MAKE) -C docs build 1.21 1.22 # The test target is for unit tests that can run without an installation. Of 1.23 @@ -39,10 +34,7 @@ test: 1.24 # build and install everything into local dist directory 1.25 .PHONY: dist 1.26 dist: DESTDIR=$(DISTDIR)/install 1.27 -ifdef CONFIG_STUBDOM 1.28 -dist: dist-stubdom 1.29 -endif 1.30 -dist: dist-xen dist-kernels dist-tools dist-docs 1.31 +dist: dist-xen dist-kernels dist-tools dist-stubdom dist-docs 1.32 $(INSTALL_DIR) $(DISTDIR)/check 1.33 $(INSTALL_DATA) ./COPYING $(DISTDIR) 1.34 $(INSTALL_DATA) ./README $(DISTDIR)