Sign in
fuchsia
/
third_party
/
ninja
/
51edeeb063a82693573db43782d9e3733b2840e4
/
.
/
misc
/
oss-fuzz
/
sample_ninja_build
blob: 7b513be2ddc8fc0cf909f8c0254f684397ba7df0 [
file
] [
log
] [
blame
]
# build.ninja
cc
=
clang
cflags
=
-
Weverything
rule compile
command
=
$cc $cflags
-
c $in
-
o $out
rule link
command
=
$cc $in
-
o $out
build hello
.
o
:
compile hello
.
c
build hello
:
link hello
.
o
default
hello