summaryrefslogtreecommitdiffstats
path: root/tests/run-make/no-duplicate-libs/Makefile
blob: 4be8c0262941aa4f8ded4fc24627acee6868bf28 (plain)
1
2
3
4
5
6
7
8
9
10
11
# ignore-cross-compile
include ../tools.mk

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