aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcl349@arcadians.cl.cam.ac.uk <cl349@arcadians.cl.cam.ac.uk>2004-12-02 10:24:43 +0000
committercl349@arcadians.cl.cam.ac.uk <cl349@arcadians.cl.cam.ac.uk>2004-12-02 10:24:43 +0000
commit37f78e88600942ea5263e3d04ffd423d08a70895 (patch)
tree4f347b1c648fec10b4a58357e35f8171f68367a3
parent89c6d52aafcd9111e8e30bf48f88eaa1f85d2ca3 (diff)
downloadxen-37f78e88600942ea5263e3d04ffd423d08a70895.tar.gz
xen-37f78e88600942ea5263e3d04ffd423d08a70895.tar.bz2
xen-37f78e88600942ea5263e3d04ffd423d08a70895.zip
bitkeeper revision 1.1159.187.51 (41aeed6bzN1zaGFaAP8KEzkGD9sW_A)
Makefile: Rename install_* targets to install-* -- matching the targets we had already.
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 13f5c5cb97..7d4d23f7ef 100644
--- a/Makefile
+++ b/Makefile
@@ -19,28 +19,28 @@ export INSTALL_DIR
include buildconfigs/Rules.mk
.PHONY: all dist install xen tools kernels docs world clean mkpatches mrproper
-.PHONY: kbuild kdelete kclean install_tools install_xen install_docs
-.PHONY: install_kernel
+.PHONY: kbuild kdelete kclean install-tools install-xen install-docs
+.PHONY: install-kernels
all: dist
# install everything into the standard system directories
# NB: install explicitly does not check that everything is up to date!
-install: install_tools install_xen install_kernels install_docs
+install: install-tools install-xen install-kernels install-docs
-install_xen:
+install-xen:
$(MAKE) -C xen install
-install_tools:
+install-tools:
$(MAKE) -C tools install
-install_kernels:
+install-kernels:
$(shell cp -a $(INSTALL_DIR)/boot/* /boot/)
$(shell cp -a $(INSTALL_DIR)/lib/modules/* /lib/modules/)
$(shell cp -dR $(INSTALL_DIR)/boot/*$(LINUX_VER)* $(prefix)/boot/)
$(shell cp -dR $(INSTALL_DIR)/lib/modules/* $(prefix)/lib/modules/)
-install_docs:
+install-docs:
sh ./docs/check_pkgs && $(MAKE) -C docs install || true
# build and install everything into local dist directory