diff options
Diffstat (limited to 'data/makefile')
-rw-r--r-- | data/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/makefile b/data/makefile index f405c20e..31881ef3 100644 --- a/data/makefile +++ b/data/makefile @@ -34,7 +34,7 @@ recipes/default.yaml: recipes/default.js DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@~ && cp $@~ $@ recipes/%.gv.txt: recipes/%.yaml - { pushd .. >/dev/null; cargo $(CARGOFLAGS) run --release --bin graph $(patsubst recipes/%.yaml,%,$<); popd >/dev/null; } > $@~ && cp $@~ $@ + { pushd .. >/dev/null; cargo $(CARGOFLAGS) run --release --bin hurrycurry-tools -- graph; popd >/dev/null; } > $@~ && cp $@~ $@ recipes/%.svg: recipes/%.gv.txt dot -Tsvg -Kdot < $< > $@~ && cp $@~ $@ |