rust/tests/run-make-fulldeps/no-duplicate-libs/Makefile
2023-01-11 09:32:08 +00:00

11 lines
152 B
Makefile

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