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

ifeq ($(findstring stage1,$(RUST_BUILD_STAGE)),stage1)
# ignore stage1
all:

else
all:
	$(RUSTC) a.rs && $(RUSTC) b.rs && $(RUSTC) c.rs
endif