diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-27 17:34:55 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-27 17:35:01 +0200 |
commit | 7ffc399d47ec9a3c161abeafe9e3591cbf15a227 (patch) | |
tree | c6b16d588e65dd17ff090640f945763a412caa02 /data/makefile | |
parent | 001c0c2e00082a87fb15754003f6b01a1b4fb89d (diff) | |
download | hurrycurry-7ffc399d47ec9a3c161abeafe9e3591cbf15a227.tar hurrycurry-7ffc399d47ec9a3c161abeafe9e3591cbf15a227.tar.bz2 hurrycurry-7ffc399d47ec9a3c161abeafe9e3591cbf15a227.tar.zst |
remove bincode support everywhere
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 $@~ $@ |