2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-23 00:00:00 +00:00
|
|
|
include ../tools.mk
|
2014-05-02 13:50:24 -07:00
|
|
|
|
2019-01-06 16:27:57 -05:00
|
|
|
# ignore-windows
|
2014-05-02 13:50:24 -07:00
|
|
|
|
2014-12-15 16:03:39 -08:00
|
|
|
NAME := $(shell $(RUSTC) --print file-names foo.rs)
|
2014-05-02 13:50:24 -07:00
|
|
|
|
|
|
|
all:
|
|
|
|
mkdir -p $(TMPDIR)/outdir
|
|
|
|
$(RUSTC) foo.rs -o $(TMPDIR)/outdir/$(NAME)
|
|
|
|
ln -nsf outdir/$(NAME) $(TMPDIR)
|
2019-04-30 17:27:53 +09:00
|
|
|
RUSTC_LOG=rustc_metadata::loader $(RUSTC) bar.rs
|