1# build.ninja 2cc = clang 3cflags = -Weverything 4 5rule compile 6 command = $cc $cflags -c $in -o $out 7 8rule link 9 command = $cc $in -o $out 10 11build hello.o: compile hello.c 12build hello: link hello.o 13 14default hello 15