summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/prefer-rlib/Makefile
blob: c6a239eef08e287577e068e8e95e098f80e35bf2 (plain)
1
2
3
4
5
6
7
8
-include ../tools.mk

all:
	$(RUSTC) bar.rs --crate-type=dylib --crate-type=rlib
	ls $(TMPDIR)/$(call RLIB_GLOB,bar)
	$(RUSTC) foo.rs
	rm $(TMPDIR)/*bar*
	$(call RUN,foo)