]> git.proxmox.com Git - rustc.git/blame - src/bootstrap/mk/Makefile.in
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / bootstrap / mk / Makefile.in
CommitLineData
7453a54e
SL
1# Copyright 20126 The Rust Project Developers. See the COPYRIGHT
2# file at the top-level directory of this distribution and at
3# http://rust-lang.org/COPYRIGHT.
4#
5# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8# option. This file may not be copied, modified, or distributed
9# except according to those terms.
10
11include config.mk
12include $(CFG_SRC_DIR)mk/util.mk
13
14ifdef VERBOSE
15BOOTSTRAP_ARGS := -v
16else
17BOOTSTRAP_ARGS :=
18endif
19
20BOOTSTRAP := $(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap.py $(BOOTSTRAP_ARGS)
21
22all:
23 $(Q)$(BOOTSTRAP)
24
25clean:
26 $(Q)$(BOOTSTRAP) --clean
27
28docs: doc
29doc:
30 $(Q)$(BOOTSTRAP) --step doc
31style:
32 $(Q)$(BOOTSTRAP) --step doc-style
33nomicon:
34 $(Q)$(BOOTSTRAP) --step doc-nomicon
35book:
36 $(Q)$(BOOTSTRAP) --step doc-book
37standalone-docs:
38 $(Q)$(BOOTSTRAP) --step doc-standalone
54a0048b
SL
39check:
40 $(Q)$(BOOTSTRAP) --step check
41check-cargotest:
42 $(Q)$(BOOTSTRAP) --step check-cargotest
43dist:
44 $(Q)$(BOOTSTRAP) --step dist
45
46.PHONY: dist