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

all:
	$(RUSTC) rlib.rs
	$(RUSTC) dylib.rs
	$(RUSTC) rlib.rs --crate-type=dylib
	$(RUSTC) dylib.rs
	$(call REMOVE_DYLIBS,rlib)
	$(RUSTC) prog.rs && exit 1 || exit 0