summary refs log tree commit diff
path: root/src/test/run-make/prefer-dylib/Makefile
blob: 8229547176a48be7750e24778e2dd4489a73a046 (plain)
1
2
3
4
5
6
7
8
-include ../tools.mk

all:
	$(RUSTC) bar.rs --dylib --rlib
	$(RUSTC) foo.rs -Z prefer-dynamic
	$(call RUN,foo)
	rm $(TMPDIR)/*bar*
	$(call FAILS,foo)