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

ifdef IS_MSVC
# FIXME(#27979)
all:
else
all:
	$(RUSTC) foo.rs
	$(RUSTC) bar.rs
	$(RUSTC) main.rs
	$(call RUN,main)
endif