changeset 352:fd96bb4a9c8d lwtools-4.11

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.
author William Astle <lost@l-w.ca>
date Mon, 13 Apr 2015 13:18:38 -0600
parents e4ad15af2e93
children e1f4d5af6438
files Makefile
diffstat 1 files changed, 0 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- 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
-