summary refs log tree commit diff
path: root/src/test/run-make/mixing-libs/Makefile
blob: eb00c80139092eb7fb7e6d1ce9c28d694bc639d7 (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 --dylib
	$(RUSTC) dylib.rs
	rm $(call DYLIB,rlib-*)
	$(RUSTC) prog.rs && exit 1 || exit 0