10 lines
192 B
Makefile
10 lines
192 B
Makefile
|
-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
|