diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-30 19:48:52 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-30 19:48:52 +0200 |
commit | 7f0a32fdd8c614194b08df2a6ec579d743cc7cda (patch) | |
tree | b6981887a3a945c4fd29ccf1241065845a7c7a67 /data/makefile | |
parent | f234ce8bb28e1528783d662243aa07ad23df5ed9 (diff) | |
download | hurrycurry-7f0a32fdd8c614194b08df2a6ec579d743cc7cda.tar hurrycurry-7f0a32fdd8c614194b08df2a6ec579d743cc7cda.tar.bz2 hurrycurry-7f0a32fdd8c614194b08df2a6ec579d743cc7cda.tar.zst |
add CARGOFLAGS everywhere
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 7b954476..4c948a81 100644 --- a/data/makefile +++ b/data/makefile @@ -27,7 +27,7 @@ recipes/default.yaml: recipes/default.js DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@ recipes/%.gv.txt: recipes/%.yaml - { cd .. && cargo run --release --bin graph $(patsubst recipes/%.yaml,%,$<); } > $@ + { cd .. && cargo $(CARGOFLAGS) run --release --bin graph $(patsubst recipes/%.yaml,%,$<); } > $@ recipes/%.svg: recipes/%.gv.txt dot -Tsvg -Kdot >$@<$< |