]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/mixing-libs/Makefile
Ignore tests broken by failing on ICE
[rust.git] / src / test / run-make / mixing-libs / Makefile
1 -include ../tools.mk
2
3 all:
4         $(RUSTC) rlib.rs
5         $(RUSTC) dylib.rs && exit 1 || exit 0
6         $(RUSTC) rlib.rs --crate-type=dylib
7         $(RUSTC) dylib.rs
8         rm $(call DYLIB,rlib-*)
9         $(RUSTC) prog.rs && exit 1 || exit 0