summary refs log tree commit diff
path: root/src/test/run-make/dylib-chain/Makefile
blob: e60e904240d188b410071832a1abb0dff77f4668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-include ../tools.mk

all:
	$(RUSTC) m1.rs
	$(RUSTC) m2.rs
	$(RUSTC) m3.rs
	$(RUSTC) m4.rs
	$(call RUN,m4)
	rm $(TMPDIR)/$(call DYLIB_GLOB,m1)
	rm $(TMPDIR)/$(call DYLIB_GLOB,m2)
	rm $(TMPDIR)/$(call DYLIB_GLOB,m3)
	$(call FAIL,m4)