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 16:57:56 -07:00
ifdef IS_MSVC
# FIXME(#27979)
all:
else
all: $(call STATICLIB,foo) $(call STATICLIB,bar)
$(RUSTC) main.rs
$(call RUN,main)
2015-08-26 16:57:56 -07:00
endif