diff options
| author | Glenn Morris | 2010-10-09 12:39:42 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-09 12:39:42 -0700 |
| commit | eef3ab9443a2cef449d08aa8832f96007fc3a36b (patch) | |
| tree | f08cd9e732c83470ae86275a12e0ae82de038927 /doc/lispintro | |
| parent | 5bd2348590033750c9a69edb4fbce2aa564ef763 (diff) | |
| download | emacs-eef3ab9443a2cef449d08aa8832f96007fc3a36b.tar.gz emacs-eef3ab9443a2cef449d08aa8832f96007fc3a36b.zip | |
Use $< in some doc/*/Makefile rules.
* doc/lispref/Makefile.in (srcs): Put elisp.texi first.
($(infodir)/elisp, elisp.dvi, elisp.pdf): Use $<.
* doc/lispintro/Makefile.in (${infodir}/eintr, emacs-lisp-intro.dvi)
(emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $<.
* doc/emacs/Makefile.in (EMACSSOURCES): Put emacs.texi first.
($(infodir)/emacs, emacs.dvi, emacs.pdf, emacs-xtra.dvi)
(emacs-xtra.pdf): Use $<.
Diffstat (limited to 'doc/lispintro')
| -rw-r--r-- | doc/lispintro/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index b8d8f1e29b0..a2e5e1a44c3 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/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 (${infodir}/eintr, emacs-lisp-intro.dvi) | ||
| 4 | (emacs-lisp-intro.pdf, emacs-lisp-intro.html): 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/lispintro/Makefile.in b/doc/lispintro/Makefile.in index d50bc8bf8ac..7a33190273c 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -50,16 +50,16 @@ pdf: emacs-lisp-intro.pdf | |||
| 50 | # -NN extensions to fit into DOS 8+3 limits without clashing. | 50 | # -NN extensions to fit into DOS 8+3 limits without clashing. |
| 51 | ${infodir}/eintr: ${srcdir}/emacs-lisp-intro.texi | 51 | ${infodir}/eintr: ${srcdir}/emacs-lisp-intro.texi |
| 52 | $(mkinfodir) | 52 | $(mkinfodir) |
| 53 | cd $(srcdir); $(MAKEINFO) emacs-lisp-intro.texi -o $@ | 53 | cd $(srcdir); $(MAKEINFO) $< -o $@ |
| 54 | 54 | ||
| 55 | emacs-lisp-intro.dvi: ${srcdir}/emacs-lisp-intro.texi | 55 | emacs-lisp-intro.dvi: ${srcdir}/emacs-lisp-intro.texi |
| 56 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $^ | 56 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $< |
| 57 | 57 | ||
| 58 | emacs-lisp-intro.pdf: ${srcdir}/emacs-lisp-intro.texi | 58 | emacs-lisp-intro.pdf: ${srcdir}/emacs-lisp-intro.texi |
| 59 | $(TEXI2PDF) -I $(srcdir) -I $(texinfodir) $^ | 59 | $(TEXI2PDF) -I $(srcdir) -I $(texinfodir) $< |
| 60 | 60 | ||
| 61 | emacs-lisp-intro.html: ${srcdir}/emacs-lisp-intro.texi | 61 | emacs-lisp-intro.html: ${srcdir}/emacs-lisp-intro.texi |
| 62 | $(MAKEINFO) --html -o $@ $^ | 62 | $(MAKEINFO) --html -o $@ $< |
| 63 | 63 | ||
| 64 | .dvi.ps: | 64 | .dvi.ps: |
| 65 | $(DVIPS) $< -o $@ | 65 | $(DVIPS) $< -o $@ |