rust/tests/run-make-fulldeps/symlinked-rlib/Makefile
2023-01-11 09:32:08 +00:00

10 lines
212 B
Makefile

include ../tools.mk
# ignore-windows
# `ln` is actually `cp` on msys.
all:
$(RUSTC) foo.rs --crate-type=rlib -o $(TMPDIR)/foo.xxx
ln -nsf $(TMPDIR)/foo.xxx $(TMPDIR)/libfoo.rlib
$(RUSTC) bar.rs -L $(TMPDIR)