12 lines
224 B
Makefile
Raw Normal View History

-include ../tools.mk
2014-04-27 16:52:36 +09:00
ifdef IS_WINDOWS
# ignore windows
RUSTC_FLAGS =
else
# Notice the space in the end, this emulates the output of pkg-config
RUSTC_FLAGS = -C link-args="-lc "
2014-04-27 16:52:36 +09:00
endif
all:
$(RUSTC) $(RUSTC_FLAGS) empty.rs