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