diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 1 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 54df508e13c..3cb96fe8fbe 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * Makefile.in (dvi, pdf, $(infodir)): New targets. | 3 | * Makefile.in (dvi, pdf, $(infodir)): New targets. |
| 4 | ($(infodir)/elisp): Ensure target directory exists. Use $@. | 4 | ($(infodir)/elisp): Ensure target directory exists. Use $@. |
| 5 | Fix -I typo. | ||
| 5 | (clean): No 'make.out' or 'core' files. | 6 | (clean): No 'make.out' or 'core' files. |
| 6 | (.PHONY): Declare clean rules. | 7 | (.PHONY): Declare clean rules. |
| 7 | (maintainer-clean): Delete pdf file. Guard against cd failures. | 8 | (maintainer-clean): Delete pdf file. Guard against cd failures. |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index 472cc5b1406..7ef19febbad 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -100,9 +100,8 @@ pdf: elisp.pdf | |||
| 100 | $(infodir): | 100 | $(infodir): |
| 101 | mkdir $@ | 101 | mkdir $@ |
| 102 | 102 | ||
| 103 | ## FIXME ? -I$infodir is that right, or should it be texinfodir? | ||
| 104 | $(infodir)/elisp: $(infodir) $(srcs) | 103 | $(infodir)/elisp: $(infodir) $(srcs) |
| 105 | cd $(srcdir); $(MAKEINFO) -I. -I$(infodir) elisp.texi -o $@ | 104 | cd $(srcdir); $(MAKEINFO) -I. -I$(texinfodir) elisp.texi -o $@ |
| 106 | 105 | ||
| 107 | elisp.dvi: $(srcs) | 106 | elisp.dvi: $(srcs) |
| 108 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $(srcdir)/elisp.texi | 107 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $(srcdir)/elisp.texi |