mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
225 B
Makefile
13 lines
225 B
Makefile
# ignore-cross-compile
|
|
# needs-unwind
|
|
include ../tools.mk
|
|
|
|
all: foo
|
|
$(call RUN,foo)
|
|
|
|
foo: foo.rs $(call NATIVE_STATICLIB,foo)
|
|
$(RUSTC) $< -lfoo $(EXTRARSCXXFLAGS)
|
|
|
|
$(TMPDIR)/libfoo.o: foo.cpp
|
|
$(call COMPILE_OBJ_CXX,$@,$<)
|