diff options
author | Glenn Morris <rgm@gnu.org> | 2009-07-11 20:03:40 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-07-11 20:03:40 +0000 |
commit | 703d26ba65161cc8af7da3ba2df8f63e68c3d2ef (patch) | |
tree | c7358d1fdb7217c3cea33d1b77b2d00c192926e4 /doc | |
parent | 64adbcf69343d754398845e8be28bc92b9db9cc3 (diff) | |
download | emacs-703d26ba65161cc8af7da3ba2df8f63e68c3d2ef.tar.gz |
(TEXI2PDF): New.
(emacs.pdf, emacs-xtra.pdf): New targets.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/emacs/ChangeLog | 3 | ||||
-rw-r--r-- | doc/emacs/Makefile.in | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index b86ff147a36..56fc79ae53d 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,5 +1,8 @@ 2009-07-11 Glenn Morris <rgm@gnu.org> + * Makefile.in (TEXI2PDF): New. + (emacs.pdf, emacs-xtra.pdf): New targets. + * arevert-xtra.texi (Autorevert): Add menu descriptions. * display.texi (Horizontal Scrolling): Re-word to remove widow. diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index edb845b3eac..62a7e7ccc55 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in @@ -43,6 +43,7 @@ DVI_TARGETS = emacs.dvi TEXI2DVI = texi2dvi +TEXI2PDF = texi2pdf # The following rule does not work with all versions of `make'. .SUFFIXES: .texi .dvi @@ -130,10 +131,16 @@ $(infodir)/emacs: ${EMACSSOURCES} emacs.dvi: ${EMACSSOURCES} $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi +emacs.pdf: ${EMACSSOURCES} + $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs.texi + emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA) $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi +emacs-xtra.pdf: emacs-xtra.texi $(EMACS_XTRA) + $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs-xtra.texi + mostlyclean: rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp *.core |