diff options
| -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 @@ | |||
| 1 | 2009-07-11 Glenn Morris <rgm@gnu.org> | 1 | 2009-07-11 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (TEXI2PDF): New. | ||
| 4 | (emacs.pdf, emacs-xtra.pdf): New targets. | ||
| 5 | |||
| 3 | * arevert-xtra.texi (Autorevert): Add menu descriptions. | 6 | * arevert-xtra.texi (Autorevert): Add menu descriptions. |
| 4 | 7 | ||
| 5 | * display.texi (Horizontal Scrolling): Re-word to remove widow. | 8 | * 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 | |||
| 43 | 43 | ||
| 44 | 44 | ||
| 45 | TEXI2DVI = texi2dvi | 45 | TEXI2DVI = texi2dvi |
| 46 | TEXI2PDF = texi2pdf | ||
| 46 | 47 | ||
| 47 | # The following rule does not work with all versions of `make'. | 48 | # The following rule does not work with all versions of `make'. |
| 48 | .SUFFIXES: .texi .dvi | 49 | .SUFFIXES: .texi .dvi |
| @@ -130,10 +131,16 @@ $(infodir)/emacs: ${EMACSSOURCES} | |||
| 130 | emacs.dvi: ${EMACSSOURCES} | 131 | emacs.dvi: ${EMACSSOURCES} |
| 131 | $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi | 132 | $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi |
| 132 | 133 | ||
| 134 | emacs.pdf: ${EMACSSOURCES} | ||
| 135 | $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs.texi | ||
| 136 | |||
| 133 | 137 | ||
| 134 | emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA) | 138 | emacs-xtra.dvi: emacs-xtra.texi $(EMACS_XTRA) |
| 135 | $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi | 139 | $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi |
| 136 | 140 | ||
| 141 | emacs-xtra.pdf: emacs-xtra.texi $(EMACS_XTRA) | ||
| 142 | $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs-xtra.texi | ||
| 143 | |||
| 137 | 144 | ||
| 138 | mostlyclean: | 145 | mostlyclean: |
| 139 | rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp *.core | 146 | rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp *.core |