diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 187567c67a2..ee8d7502bc5 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-10-09 Glenn Morris <rgm@gnu.org> | 1 | 2010-10-09 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (srcs): Put elisp.texi first. | ||
| 4 | ($(infodir)/elisp, elisp.dvi, elisp.pdf): Use $<. | ||
| 5 | |||
| 3 | * Makefile.in (infoclean): Remove harmless, long-standing error. | 6 | * Makefile.in (infoclean): Remove harmless, long-standing error. |
| 4 | 7 | ||
| 5 | * Makefile.in ($(infodir)): Delete rule. | 8 | * Makefile.in ($(infodir)): Delete rule. |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index ec570e8000b..8a21fa9c08b 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -42,6 +42,7 @@ TEXI2PDF = texi2pdf | |||
| 42 | # List of all the texinfo files in the manual: | 42 | # List of all the texinfo files in the manual: |
| 43 | 43 | ||
| 44 | srcs = \ | 44 | srcs = \ |
| 45 | $(srcdir)/elisp.texi \ | ||
| 45 | $(emacsdir)/emacsver.texi \ | 46 | $(emacsdir)/emacsver.texi \ |
| 46 | $(srcdir)/abbrevs.texi \ | 47 | $(srcdir)/abbrevs.texi \ |
| 47 | $(srcdir)/advice.texi \ | 48 | $(srcdir)/advice.texi \ |
| @@ -56,7 +57,6 @@ srcs = \ | |||
| 56 | $(srcdir)/debugging.texi \ | 57 | $(srcdir)/debugging.texi \ |
| 57 | $(srcdir)/display.texi \ | 58 | $(srcdir)/display.texi \ |
| 58 | $(srcdir)/edebug.texi \ | 59 | $(srcdir)/edebug.texi \ |
| 59 | $(srcdir)/elisp.texi \ | ||
| 60 | $(srcdir)/errors.texi \ | 60 | $(srcdir)/errors.texi \ |
| 61 | $(srcdir)/eval.texi \ | 61 | $(srcdir)/eval.texi \ |
| 62 | $(srcdir)/files.texi \ | 62 | $(srcdir)/files.texi \ |
| @@ -107,13 +107,13 @@ pdf: elisp.pdf | |||
| 107 | 107 | ||
| 108 | $(infodir)/elisp: $(srcs) | 108 | $(infodir)/elisp: $(srcs) |
| 109 | $(mkinfodir) | 109 | $(mkinfodir) |
| 110 | cd $(srcdir); $(MAKEINFO) -I. -I$(texinfodir) elisp.texi -o $@ | 110 | cd $(srcdir); $(MAKEINFO) -I. -I$(texinfodir) $< -o $@ |
| 111 | 111 | ||
| 112 | elisp.dvi: $(srcs) | 112 | elisp.dvi: $(srcs) |
| 113 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $(srcdir)/elisp.texi | 113 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $< |
| 114 | 114 | ||
| 115 | elisp.pdf: $(srcs) | 115 | elisp.pdf: $(srcs) |
| 116 | $(TEXI2PDF) -I $(srcdir) -I $(texinfodir) $(srcdir)/elisp.texi | 116 | $(TEXI2PDF) -I $(srcdir) -I $(texinfodir) $< |
| 117 | 117 | ||
| 118 | .PHONY: mostlyclean clean distclean maintainer-clean infoclean | 118 | .PHONY: mostlyclean clean distclean maintainer-clean infoclean |
| 119 | 119 | ||