blob: a6e219873dfd28af4a5b42b269723e4752b37e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-include ../tools.mk
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 "
endif
all:
$(RUSTC) $(RUSTC_FLAGS) empty.rs
|