diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
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) |