10 lines
334 B
Makefile
Raw Normal View History

-include ../tools.mk
all:
[ `$(RUSTC) --print-crate-name crate.rs` = "foo" ]
[ `$(RUSTC) --print-file-name crate.rs` = "foo" ]
[ `$(RUSTC) --print-file-name --crate-type=lib --test crate.rs` = "foo" ]
[ `$(RUSTC) --print-file-name --test lib.rs` = "mylib" ]
$(RUSTC) --print-file-name lib.rs
$(RUSTC) --print-file-name rlib.rs