15 lines
167 B
Makefile
15 lines
167 B
Makefile
|
-include ../tools.mk
|
||
|
|
||
|
ifdef IS_WINDOWS
|
||
|
|
||
|
all:
|
||
|
$(RUSTC) -o "$(TMPDIR)/hopefullydoesntexist bar.exe" hello.rs
|
||
|
$(RUSTC) spawn.rs
|
||
|
$(TMPDIR)/spawn.exe
|
||
|
|
||
|
else
|
||
|
|
||
|
all:
|
||
|
|
||
|
endif
|