summary refs log tree commit diff
path: root/src/test/run-make/dylib-chain/Makefile
blob: 2149f2451470e2e41f283fb95327a9fa55b5aa8b (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)
	$(call REMOVE_DYLIBS,m1)
	$(call REMOVE_DYLIBS,m2)
	$(call REMOVE_DYLIBS,m3)
	$(call FAIL,m4)