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