summaryrefslogtreecommitdiffstats
path: root/tests/run-make/symlinked-libraries/Makefile
blob: fb0b6127e6f5c4aa68b5c308b721da20f32b50ad (plain)
1
2
3
4
5
6
7
8
9
10
11
# ignore-cross-compile
include ../tools.mk

# ignore-windows
# `ln` is actually `cp` on msys.

all:
	$(RUSTC) foo.rs -C prefer-dynamic
	mkdir -p $(TMPDIR)/other
	ln -nsf $(TMPDIR)/$(call DYLIB_GLOB,foo) $(TMPDIR)/other
	$(RUSTC) bar.rs -L $(TMPDIR)/other