rust/tests/run-make/no-duplicate-libs/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
175 B
Makefile
Raw Normal View History

# ignore-cross-compile
include ../tools.mk
2015-08-26 18:57:56 -05:00
ifdef IS_MSVC
# FIXME(#27979)
all:
else
all: $(call STATICLIB,foo) $(call STATICLIB,bar)
$(RUSTC) main.rs
$(call RUN,main)
2015-08-26 18:57:56 -05:00
endif