diff options
Diffstat (limited to 'data/makefile')
-rw-r--r-- | data/makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/data/makefile b/data/makefile index 31881ef3..c9361258 100644 --- a/data/makefile +++ b/data/makefile @@ -20,12 +20,6 @@ graphs: recipes/default.svg JSR = deno run -../book/book.json: ../book/book.js - make -C ../book book.json - -book.json: ../book/book.json - cp $< $@ - recipes/none.yaml: echo > $@ recipes/anticurry.yaml: recipes/default.yaml @@ -35,6 +29,8 @@ recipes/default.yaml: recipes/default.js recipes/%.gv.txt: recipes/%.yaml { pushd .. >/dev/null; cargo $(CARGOFLAGS) run --release --bin hurrycurry-tools -- graph; popd >/dev/null; } > $@~ && cp $@~ $@ +book.json: + { pushd .. >/dev/null; cargo $(CARGOFLAGS) run --release --bin hurrycurry-tools -- book; popd >/dev/null; } > $@~ && cp $@~ $@ recipes/%.svg: recipes/%.gv.txt dot -Tsvg -Kdot < $< > $@~ && cp $@~ $@ |