summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/crate-data-smoke/Makefile
blob: 1afda457411da96b4b515bc5de0641c8aac6d5e2 (plain)
1
2
3
4
5
6
7
8
9
10
-include ../tools.mk

all:
	[ `$(RUSTC) --print crate-name crate.rs` = "foo" ]
	[ `$(RUSTC) --print file-names crate.rs` = "$(call BIN,foo)" ]
	[ `$(RUSTC) --print file-names --crate-type=lib \
		--test crate.rs` = "$(call BIN,foo)" ]
	[ `$(RUSTC) --print file-names --test lib.rs` = "$(call BIN,mylib)" ]
	$(RUSTC) --print file-names lib.rs
	$(RUSTC) --print file-names rlib.rs