readarg/test/build.ninja
2022-10-12 21:52:00 +02:00

15 lines
240 B
Plaintext

include config.ninja
rule compile
command = $cc $cflags -c -o $out $in
rule link
command = $cc $cflags -o $out $in $ldflags $ldlibs
build ./test.o: compile ./test.c
build $target: link ./test.o
build all: phony $target
default all