From: Mark Hansen Date: Thu, 14 May 2020 11:49:32 +0000 (+1000) Subject: Add rule to build schema.html in Makefile X-Git-Tag: 2.44.1~52^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c501fbb106f27f80a1c496fbc2c708f206b99480;p=graphviz Add rule to build schema.html in Makefile Fixes error when running Makefile: make: *** No rule to make target `schema.html', needed by `all'. Stop. --- diff --git a/doc/infosrc/Makefile b/doc/infosrc/Makefile index a1af8cef2..9a5b20308 100644 --- a/doc/infosrc/Makefile +++ b/doc/infosrc/Makefile @@ -142,9 +142,11 @@ colors.html : colors.1 colors.n ../../lib/common/color_names ../../lib/common/sv cat colors.n >> colors.html rm -rf colortmp -output.html : output.1 output.2 outputs mkoutput.sh plugins.png jconvert.py - cat output.1 > output.html +schema.html : jconvert.py graphviz_json_schema.json ./jconvert.py graphviz_json_schema.json schema.html + +output.html : output.1 output.2 outputs mkoutput.sh plugins.png jconvert.py schema.html + cat output.1 > output.html ./mkoutput.sh < outputs >> output.html cat output.2 >> output.html @@ -215,7 +217,7 @@ clean : .PHONY: distclean distclean : clean - rm -f attrs.html colors.html output.html shapes.html lang.html arrows.html + rm -f attrs.html colors.html output.html shapes.html lang.html arrows.html schema.html rm -f $(A2GIF) $(AGIF) $(SGIF) $(MPJG) $(MGIF) $(MPNG) $(XGIF) shapes (for s in $$(cat shapelist); do rm -f $$s.gif; done)