summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/no-duplicate-libs/Makefile
blob: b05aff7826e095e43c4ff731282e6d40c0ffedce (plain)
1
2
3
4
5
6
7
8
9
10
include ../tools.mk

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