rust/src/test/run-make-fulldeps/redundant-libs/Makefile

12 lines
245 B
Makefile
Raw Normal View History

2019-03-07 14:12:48 -06:00
-include ../tools.mk
RUSTC_FLAGS = \
-l static=bar \
-l foo \
-l static=baz \
-l foo \
-Z print-link-args
all: $(call DYLIB,foo) $(call STATICLIB,bar) $(call STATICLIB,baz)
$(RUSTC) $(RUSTC_FLAGS) main.rs
$(call RUN,main)