blob: 855d958b344a9531a3aa998ff1e89a04bd869e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-include ../tools.mk
ifeq ($(findstring stage1,$(RUST_BUILD_STAGE)),stage1)
# ignore stage1
all:
else
all:
$(RUSTC) foo.rs; $(RUSTC) bar.rs
$(RUSTDOC) baz.rs -L $(TMPDIR) -o $(TMPDIR)
endif
|