diff options
| author | Glenn Morris | 2009-10-27 02:45:40 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-10-27 02:45:40 +0000 |
| commit | b60bfecceaeec6d311bc38a8cdd25d3080dd1421 (patch) | |
| tree | bdc617058db9bd69c92c7c86010e565e29dfe840 | |
| parent | b595510adb847c0cd2594f1c62fb3133c32d42d6 (diff) | |
| download | emacs-b60bfecceaeec6d311bc38a8cdd25d3080dd1421.tar.gz emacs-b60bfecceaeec6d311bc38a8cdd25d3080dd1421.zip | |
(TEXI2PDF): New variable.
(emacs-lisp-intro.pdf): New target.
| -rw-r--r-- | doc/lispintro/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index 151cf2f4714..47e72d63062 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #### Makefile for the Emacs Lisp Introduction manual | 1 | #### Makefile for the Emacs Lisp Introduction manual |
| 2 | 2 | ||
| 3 | # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, | 3 | # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, |
| 4 | # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | 4 | # 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | # This file is part of GNU Emacs. | 6 | # This file is part of GNU Emacs. |
| 7 | 7 | ||
| @@ -36,6 +36,7 @@ DVI_TARGETS = emacs-lisp-intro.dvi | |||
| 36 | 36 | ||
| 37 | MAKEINFO = makeinfo | 37 | MAKEINFO = makeinfo |
| 38 | TEXI2DVI = texi2dvi | 38 | TEXI2DVI = texi2dvi |
| 39 | TEXI2PDF = texi2pdf | ||
| 39 | DVIPS = dvips | 40 | DVIPS = dvips |
| 40 | 41 | ||
| 41 | .SUFFIXES: .dvi .ps .texi | 42 | .SUFFIXES: .dvi .ps .texi |
| @@ -50,6 +51,9 @@ ${infodir}/eintr: ${INFO_SOURCES} | |||
| 50 | emacs-lisp-intro.dvi: ${INFO_SOURCES} | 51 | emacs-lisp-intro.dvi: ${INFO_SOURCES} |
| 51 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $(srcdir)/emacs-lisp-intro.texi | 52 | $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $(srcdir)/emacs-lisp-intro.texi |
| 52 | 53 | ||
| 54 | emacs-lisp-intro.pdf: ${INFO_SOURCES} | ||
| 55 | $(TEXI2PDF) -I $(srcdir) -I $(texinfodir) $(srcdir)/emacs-lisp-intro.texi | ||
| 56 | |||
| 53 | emacs-lisp-intro.html: $(INFO_SOURCES) | 57 | emacs-lisp-intro.html: $(INFO_SOURCES) |
| 54 | $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi | 58 | $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi |
| 55 | 59 | ||