blob: 3e82322e72d34fec4f84c63789d326fe39c11eca (
plain)
1
2
3
4
5
6
7
8
9
|
# ignore-cross-compile
include ../tools.mk
all: $(call NATIVE_STATICLIB,foo) $(call NATIVE_STATICLIB,bar)
$(RUSTC) lib1.rs
$(RUSTC) lib2.rs
$(RUSTC) main.rs -Clto
$(call RUN,main)
|