summaryrefslogtreecommitdiff
path: root/misc/oss-fuzz/sample_ninja_build
blob: 7b513be2ddc8fc0cf909f8c0254f684397ba7df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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