summary refs log tree commit diff
path: root/src/test/run-make/c-link-to-rust-dylib/Makefile
blob: fb57a08a8261c91dddb393fd50424f7500648172 (plain)
1
2
3
4
5
6
7
8
9
-include ../tools.mk

all:
	$(RUSTC) foo.rs
	ln -s $(call DYLIB,foo-*) $(call DYLIB,foo)
	$(CC) bar.c -lfoo -o $(call RUN,bar) -Wl,-rpath,$(TMPDIR)
	$(call RUN,bar)
	rm $(call DYLIB,foo)
	$(call FAIL,bar)