]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/mk/Makefile.in
Reviewer changes
[rust.git] / src / bootstrap / mk / Makefile.in
1 # Copyright 2016 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
11 ifdef VERBOSE
12 Q :=
13 BOOTSTRAP_ARGS := -v
14 else
15 Q := @
16 BOOTSTRAP_ARGS :=
17 endif
18
19 BOOTSTRAP := $(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap.py
20
21 all:
22         $(Q)$(BOOTSTRAP) build $(BOOTSTRAP_ARGS)
23         $(Q)$(BOOTSTRAP) doc $(BOOTSTRAP_ARGS)
24
25 help:
26         $(Q)echo 'Welcome to the rustbuild build system!'
27         $(Q)echo
28         $(Q)echo This makefile is a thin veneer over the ./x.py script located
29         $(Q)echo in this directory. To get the full power of the build system
30         $(Q)echo you can run x.py directly.
31         $(Q)echo
32         $(Q)echo To learn more run \`./x.py --help\`
33
34 clean:
35         $(Q)$(BOOTSTRAP) clean $(BOOTSTRAP_ARGS)
36
37 rustc-stage1:
38         $(Q)$(BOOTSTRAP) build --stage 1 src/libtest $(BOOTSTRAP_ARGS)
39 rustc-stage2:
40         $(Q)$(BOOTSTRAP) build --stage 2 src/libtest $(BOOTSTRAP_ARGS)
41
42 docs: doc
43 doc:
44         $(Q)$(BOOTSTRAP) doc $(BOOTSTRAP_ARGS)
45 nomicon:
46         $(Q)$(BOOTSTRAP) doc src/doc/nomicon $(BOOTSTRAP_ARGS)
47 book:
48         $(Q)$(BOOTSTRAP) doc src/doc/book $(BOOTSTRAP_ARGS)
49 standalone-docs:
50         $(Q)$(BOOTSTRAP) doc src/doc $(BOOTSTRAP_ARGS)
51 check:
52         $(Q)$(BOOTSTRAP) test $(BOOTSTRAP_ARGS)
53 check-aux:
54         $(Q)$(BOOTSTRAP) test \
55                 src/tools/cargotest \
56                 src/tools/cargo \
57                 src/tools/rls \
58                 src/tools/rustfmt \
59                 src/test/pretty \
60                 src/test/run-pass/pretty \
61                 src/test/run-fail/pretty \
62                 src/test/run-pass-valgrind/pretty \
63                 src/test/run-pass-fulldeps/pretty \
64                 src/test/run-fail-fulldeps/pretty \
65                 $(BOOTSTRAP_ARGS)
66 check-bootstrap:
67         $(Q)$(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap_test.py
68 dist:
69         $(Q)$(BOOTSTRAP) dist $(BOOTSTRAP_ARGS)
70 distcheck:
71         $(Q)$(BOOTSTRAP) dist $(BOOTSTRAP_ARGS)
72         $(Q)$(BOOTSTRAP) test distcheck $(BOOTSTRAP_ARGS)
73 install:
74         $(Q)$(BOOTSTRAP) install $(BOOTSTRAP_ARGS)
75 tidy:
76         $(Q)$(BOOTSTRAP) test src/tools/tidy $(BOOTSTRAP_ARGS)
77 prepare:
78         $(Q)$(BOOTSTRAP) build nonexistent/path/to/trigger/cargo/metadata
79
80 check-stage2-T-arm-linux-androideabi-H-x86_64-unknown-linux-gnu:
81         $(Q)$(BOOTSTRAP) test --target arm-linux-androideabi
82 check-stage2-T-x86_64-unknown-linux-musl-H-x86_64-unknown-linux-gnu:
83         $(Q)$(BOOTSTRAP) test --target x86_64-unknown-linux-musl
84
85
86 .PHONY: dist