comparison lispintro/Makefile.in @ 41420:29ff891c49ec

Modified for the Emacs distribution.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 24 Nov 2001 09:54:31 +0000
parents
children 1c3aa4632040
comparison
equal deleted inserted replaced
41419:81924bb3782d 41420:29ff891c49ec
1 #### Makefile for the Emacs Lisp Introduction manual
2
3 # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
4
5 # This file is part of GNU Emacs.
6
7 # GNU Emacs is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs; see the file COPYING. If not, write to
19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
21
22 SHELL = @SHELL@
23
24 srcdir = @srcdir@
25 VPATH = @srcdir@
26
27 infodir = ${srcdir}/../info
28
29 INFO_SOURCES = ${srcdir}/emacs-lisp-intro.texi
30 # The file name eintr must fit within 5 characters, to allow for
31 # -NN extensions to fit into DOS 8+3 limits without clashing
32 INFO_TARGETS = ${infodir}/eintr
33 DVI_TARGETS = emacs-lisp-intro.dvi
34
35 MAKEINFO = makeinfo
36 TEXI2DVI = texi2dvi
37 DVIPS = dvips
38 ENVADD = MAKEINFO="$(MAKEINFO) -I$(srcdir) -I."
39 TEXADD = TEXINPUTS="$(srcdir)/../man:$(TEXINPUTS)"
40
41 .SUFFIXES: .dvi .ps .texi
42
43 info: $(INFO_TARGETS)
44
45 dvi: $(DVI_TARGETS)
46
47 ${infodir}/eintr: ${INFO_SOURCES}
48 $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi
49
50 emacs-lisp-intro.dvi: ${INFO_SOURCES}
51 $(ENVADD) $(TEXADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
52
53 emacs-lisp-intro.html: $(INFO_SOURCES)
54 $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
55
56 .dvi.ps:
57 $(DVIPS) $< -o $@
58
59 mostlyclean:
60 rm -f *.log *.cp *.fn *.ky *.pg *.vr *.tp
61
62 clean: mostlyclean
63 rm -f *.dvi
64
65 distclean: clean
66
67 maintainer-clean: distclean
68 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
69
70 # Tell versions [3.59,3.63) of GNU make to not export all variables.
71 # Otherwise a system limit (for SysV at least) may be exceeded.
72 .NOEXPORT: