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