diff doc/lispref/Makefile.in @ 110912:2bfb6bf8a383

Add html targets for some doc/ Makefiles. * doc/lispref/Makefile.in (.PHONY): Add html. (html, elisp.html): New targets. (clean): Delete html files. ($(infodir)/elisp): Remove unnecessary includes. * doc/lispintro/Makefile.in (MAKEINFO): Use --force like the other doc/ Makefiles do. * doc/emacs/Makefile.in (.PHONY): Add html. (html, emacs.html): New targets. (clean): Delete html files.
author Glenn Morris <rgm@gnu.org>
date Sun, 10 Oct 2010 17:43:27 -0700
parents 6d7021474f2e
children 1ba912b1a63c
line wrap: on
line diff
--- a/doc/lispref/Makefile.in	Sun Oct 10 17:30:34 2010 -0700
+++ b/doc/lispref/Makefile.in	Sun Oct 10 17:43:27 2010 -0700
@@ -100,16 +100,20 @@
 
 info: $(infodir)/elisp
 dvi: elisp.dvi
+html: elisp.html
 pdf: elisp.pdf
 ps: elisp.ps
 
 $(infodir)/elisp: $(srcs)
 	$(mkinfodir)
-	$(MAKEINFO) -I. -I$(texinfodir) $< -o $@
+	$(MAKEINFO) -o $@ $<
 
 elisp.dvi: $(srcs)
 	$(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $<
 
+elisp.html: $(srcs)
+	$(MAKEINFO) --html -o $@ $<
+
 elisp.ps: elisp.dvi
 	$(DVIPS) -o $@ $<
 
@@ -126,6 +130,7 @@
 
 clean: mostlyclean
 	rm -f elisp.dvi elisp.pdf elisp.ps vol[12].pdf
+	rm -rf elisp.html
 	rm -f emacs-lispref-${version}.tar*
 
 distclean: clean