diff options
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 $@~ $@ |