summary refs log tree commit diff
path: root/src/test/run-make/symlinked-libraries/Makefile
blob: 45ef241c28f7f5c621be37a2bea6e3db5a507343 (plain)
1
2
3
4
5
6
7
-include ../tools.mk

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