diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-06 23:03:32 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-06 23:03:40 +0200 |
commit | 176e6bc6c4c29bea3be2aceca99743b997c76c97 (patch) | |
tree | 1161e7a966843324756340da4b6452492902fa07 /data/makefile | |
parent | ea86b11b682500160f37b35ea8f06b081cd05036 (diff) | |
download | hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar.bz2 hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar.zst |
Move data code to own crate + general data refactor
Diffstat (limited to 'data/makefile')
-rw-r--r-- | data/makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/data/makefile b/data/makefile index c9361258..104fc876 100644 --- a/data/makefile +++ b/data/makefile @@ -14,7 +14,7 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. # SETS = default none anticurry -ALL = $(patsubst %,recipes/%.yaml,$(SETS)) book.json +ALL = $(patsubst %,recipes/%.yaml,$(SETS)) all: $(ALL) graphs: recipes/default.svg @@ -29,8 +29,6 @@ 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 $@~ $@ |