diff options
-rw-r--r-- | book/GNUmakefile | 2 | ||||
-rw-r--r-- | data/makefile | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/book/GNUmakefile b/book/GNUmakefile index 09dcdcec..9661290c 100644 --- a/book/GNUmakefile +++ b/book/GNUmakefile @@ -27,7 +27,7 @@ out: @mkdir -p out book.json: book.js - DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@ + DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@~ && cp $@~ $@ $(wordlist 2,99,$(png_pages)): $(word 1,$(png_pages)) out/book_01.%.png: book.typ book.json locale/%.ini out diff --git a/data/makefile b/data/makefile index fe4ab583..9b4dec4e 100644 --- a/data/makefile +++ b/data/makefile @@ -29,15 +29,15 @@ book.json: ../book/book.json recipes/none.yaml: echo > $@ recipes/anticurry.yaml: recipes/default.yaml - recipes/anticurry.sed <$<>$@ + recipes/anticurry.sed < $< > $@~ && cp $@~ $@ recipes/default.yaml: recipes/default.js - DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@ + DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@~ && cp $@~ $@ recipes/%.gv.txt: recipes/%.yaml - { cd .. && cargo $(CARGOFLAGS) run --release --bin graph $(patsubst recipes/%.yaml,%,$<); } > $@ + { cd .. && cargo $(CARGOFLAGS) run --release --bin graph $(patsubst recipes/%.yaml,%,$<); } > $@~ && cp $@~ $@ recipes/%.svg: recipes/%.gv.txt - dot -Tsvg -Kdot >$@<$< + dot -Tsvg -Kdot < $< > $@~ && cp $@~ $@ clean: $(RM) $(ALL) |