9 lines
185 B
Makefile
9 lines
185 B
Makefile
default: everything
|
|
|
|
build.ninja: $(wildcard *.cue) $(wildcard *.yaml) configure.jq
|
|
cue export -- *.cue *.yaml | ./configure.jq --args -- *.cue *.yaml
|
|
|
|
everything: build.ninja
|
|
ninja
|
|
|