2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2014-03-04 15:17:30 -06:00
|
|
|
|
2015-08-26 18:57:56 -05:00
|
|
|
ifdef IS_MSVC
|
|
|
|
# FIXME(#27979)
|
|
|
|
all:
|
|
|
|
else
|
2017-06-03 16:54:08 -05:00
|
|
|
all: $(call STATICLIB,foo) $(call STATICLIB,bar)
|
2014-03-04 15:17:30 -06:00
|
|
|
$(RUSTC) main.rs
|
|
|
|
$(call RUN,main)
|
2015-08-26 18:57:56 -05:00
|
|
|
endif
|