summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/dylib-chain/Makefile
blob: a33177197b119c4c6d5fcebe68045150297cec9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-include ../tools.mk

all:
	$(RUSTC) m1.rs -C prefer-dynamic
	$(RUSTC) m2.rs -C prefer-dynamic
	$(RUSTC) m3.rs -C prefer-dynamic
	$(RUSTC) m4.rs
	$(call RUN,m4)
	$(call REMOVE_DYLIBS,m1)
	$(call REMOVE_DYLIBS,m2)
	$(call REMOVE_DYLIBS,m3)
	$(call FAIL,m4)