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

all:
	$(CC) -std=c99 test.c -c -o $(TMPDIR)/test.o
	$(AR) rcs $(TMPDIR)/libtest.a $(TMPDIR)/test.o
	$(RUSTC) test.rs -L $(TMPDIR)
	$(call RUN,test) || exit 1