# HG changeset patch # User William Astle # Date 1428952718 21600 # Node ID fd96bb4a9c8d2451b85703e49edc136b560cd206 # Parent e4ad15af2e9394c0cd65537af1876f8051cced9d Remove manual building targets from Makefile Since the manual is distributed prebuilt in the repository, there is no need to include documentation building rules in the top level make file. diff -r e4ad15af2e93 -r fd96bb4a9c8d Makefile --- a/Makefile Mon Apr 13 08:49:22 2015 -0600 +++ b/Makefile Mon Apr 13 13:18:38 2015 -0600 @@ -131,7 +131,6 @@ realclean: clean $(realcleantargs) @echo "Cleaning up even more" @rm -f $(lwasm_deps) $(lwlink_deps) $(lwar_deps) $(lwlib_deps) $(lwobjdump_deps) - @rm -f docs/manual/*.html docs/manual/*.pdf print-%: @echo $* = $($*) @@ -145,24 +144,3 @@ test: all test/runtests @test/runtests -.PHONY: manual -manual: manual-html manual-htmlm manual-pdf - -.PHONY: manual-html -manual-html: docs/manual/manual.html - -.PHONY: manual-htmlm -manual-htmlm: docs/manual/index.html - -.PHONY: manual-pdf -manual-pdf: docs/manual/manual.pdf - -docs/manual/manual.html: docs/manual.docbook.sgml - docbook2html -o docs -u docs/manual.docbook.sgml && mv docs/manual.docbook.html docs/manual/manual.html - -docs/manual/index.html: docs/manual.docbook.sgml - docbook2html -o docs/manual docs/manual.docbook.sgml - -docs/manual/manual.pdf: docs/manual.docbook.sgml - docbook2pdf -o docs -u docs/manual.docbook.sgml && mv docs/manual.docbook.pdf docs/manual/manual.pdf && rm -f docs/manual.docbook.html -