Add `ninja tools` helper for downloading all tools
This commit is contained in:
parent
5e7990495b
commit
a57d08dd07
|
@ -367,6 +367,17 @@ def generate_build_ninja(
|
||||||
|
|
||||||
n.newline()
|
n.newline()
|
||||||
|
|
||||||
|
###
|
||||||
|
# Helper rule for downloading all tools
|
||||||
|
###
|
||||||
|
n.comment("Download all tools")
|
||||||
|
n.build(
|
||||||
|
outputs="tools",
|
||||||
|
rule="phony",
|
||||||
|
inputs=[dtk, sjiswrap, wrapper, compilers, binutils],
|
||||||
|
)
|
||||||
|
n.newline()
|
||||||
|
|
||||||
###
|
###
|
||||||
# Build rules
|
# Build rules
|
||||||
###
|
###
|
||||||
|
|
Loading…
Reference in New Issue