13 lines
143 B
Makefile
Raw Normal View History

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