summary refs log tree commit diff
path: root/src/test/run-make/mixing-libs/Makefile
blob: 533a6933a6dbc247de548d4c919f005923072dee (plain)
1
2
3
4
5
6
7
8
9
-include ../tools.mk

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