summary refs log tree commit diff
path: root/src/test/run-make/crate-name-priority/Makefile
blob: 2fe518324336171c97d0c4bfb37e314979fafd39 (plain)
1
2
3
4
5
6
7
8
9
10
11
-include ../tools.mk

all:
	$(RUSTC) foo.rs
	rm $(TMPDIR)/$(call BIN,foo)
	$(RUSTC) foo.rs --crate-name bar
	rm $(TMPDIR)/$(call BIN,bar)
	$(RUSTC) foo1.rs
	rm $(TMPDIR)/$(call BIN,foo)
	$(RUSTC) foo1.rs -o $(TMPDIR)/bar1
	rm $(TMPDIR)/$(call BIN,bar1)