mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
220 B
Makefile
13 lines
220 B
Makefile
include ../tools.mk
|
|
|
|
# ignore-freebsd
|
|
# FIXME
|
|
|
|
all:
|
|
$(RUSTC) foo.rs
|
|
$(CC) bar.c $(call STATICLIB,foo) $(call OUT_EXE,bar) \
|
|
$(EXTRACFLAGS) $(EXTRACXXFLAGS)
|
|
$(call RUN,bar)
|
|
rm $(call STATICLIB,foo)
|
|
$(call RUN,bar)
|