diff Makefile @ 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 f0910d85f7db
children c6bd6e9bc6df
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
-