7 lines
164 B
Makefile
7 lines
164 B
Makefile
|
-include ../tools.mk
|
||
|
# Notice the space in the end, this emulates the output of pkg-config
|
||
|
RUSTC_FLAGS = --link-args "-lc "
|
||
|
|
||
|
all:
|
||
|
$(RUSTC) $(RUSTC_FLAGS) empty.rs
|