mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
8 lines
302 B
Makefile
8 lines
302 B
Makefile
include ../tools.mk
|
|
|
|
all:
|
|
$(RUSTC) main.rs -o main.rs 2> $(TMPDIR)/file.stderr || echo "failed successfully"
|
|
$(RUSTC) main.rs -o . 2> $(TMPDIR)/folder.stderr || echo "failed successfully"
|
|
$(RUSTC_TEST_OP) "$(TMPDIR)"/file.stderr file.stderr
|
|
$(RUSTC_TEST_OP) "$(TMPDIR)"/folder.stderr folder.stderr
|