Merge from emacs-24; up to 2012-04-26T03:04:36Z!cyd@gnu.org
[bpt/emacs.git] / doc / lispintro / Makefile.in
CommitLineData
8cda6f8f
GM
1#### Makefile for the Emacs Lisp Introduction manual
2
f48a9cb4 3# Copyright (C) 1994-1999, 2001-2012 Free Software Foundation, Inc.
8cda6f8f
GM
4
5# This file is part of GNU Emacs.
6
8ae3715e 7# GNU Emacs is free software: you can redistribute it and/or modify
8cda6f8f 8# it under the terms of the GNU General Public License as published by
8ae3715e
GM
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
8cda6f8f
GM
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
8ae3715e
GM
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
4c83f6e1 20SHELL = /bin/sh
8cda6f8f
GM
21
22srcdir = @srcdir@
17ca7950 23version=@version@
8cda6f8f 24
2fecccba 25buildinfodir = $(srcdir)/../../info
fdf93ad9
GM
26# Directory with the (customized) texinfo.tex file.
27texinfodir = $(srcdir)/../misc
8cda6f8f 28
3fe7cdc8
GM
29MKDIR_P = @MKDIR_P@
30
8045b906
GM
31INFO_EXT=@INFO_EXT@
32# Options used only when making info output.
33INFO_OPTS=@INFO_OPTS@
34
53ed5e45
WL
35MAKEINFO = @MAKEINFO@
36MAKEINFO_OPTS = --force -I $(srcdir)
8cda6f8f 37TEXI2DVI = texi2dvi
b60bfecc 38TEXI2PDF = texi2pdf
8cda6f8f
GM
39DVIPS = dvips
40
53ed5e45
WL
41ENVADD = TEXINPUTS="$(srcdir):$(texinfodir):$(TEXINPUTS)" \
42 MAKEINFO="$(MAKEINFO) $(MAKEINFO_OPTS)"
43
ac1a0ce1 44mkinfodir = @${MKDIR_P} ${buildinfodir}
abd40fb4 45
c12e4a81 46.PHONY: info dvi html pdf ps
ea274122 47
ac1a0ce1 48info: ${buildinfodir}/eintr$(INFO_EXT)
4c83f6e1 49
4c83f6e1
GM
50dvi: emacs-lisp-intro.dvi
51html: emacs-lisp-intro.html
52pdf: emacs-lisp-intro.pdf
c12e4a81 53ps: emacs-lisp-intro.ps
8cda6f8f 54
4c83f6e1
GM
55# The file name eintr must fit within 5 characters, to allow for
56# -NN extensions to fit into DOS 8+3 limits without clashing.
f48a9cb4 57# Note: "<" is not portable in ordinary make rules.
ac1a0ce1 58${buildinfodir}/eintr$(INFO_EXT): ${srcdir}/emacs-lisp-intro.texi
abd40fb4 59 $(mkinfodir)
8045b906 60 $(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ ${srcdir}/emacs-lisp-intro.texi
8cda6f8f 61
4c83f6e1 62emacs-lisp-intro.dvi: ${srcdir}/emacs-lisp-intro.texi
f48a9cb4 63 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-lisp-intro.texi
8cda6f8f 64
c12e4a81 65emacs-lisp-intro.ps: emacs-lisp-intro.dvi
f48a9cb4 66 $(DVIPS) -o $@ emacs-lisp-intro.dvi
c12e4a81 67
4c83f6e1 68emacs-lisp-intro.pdf: ${srcdir}/emacs-lisp-intro.texi
f48a9cb4 69 $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs-lisp-intro.texi
b60bfecc 70
4c83f6e1 71emacs-lisp-intro.html: ${srcdir}/emacs-lisp-intro.texi
f48a9cb4 72 $(MAKEINFO) $(MAKEINFO_OPTS) --html -o $@ ${srcdir}/emacs-lisp-intro.texi
8cda6f8f 73
4c83f6e1
GM
74.PHONY: mostlyclean clean distclean maintainer-clean infoclean
75
8cda6f8f 76mostlyclean:
4c83f6e1
GM
77 rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
78 *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
8cda6f8f
GM
79
80clean: mostlyclean
c12e4a81 81 rm -f emacs-lisp-intro.dvi emacs-lisp-intro.pdf emacs-lisp-intro.ps
4c83f6e1 82 rm -rf emacs-lisp-intro.html/
17ca7950 83 rm -f emacs-lispintro-${version}.tar*
8cda6f8f
GM
84
85distclean: clean
86
4c83f6e1 87infoclean:
ac1a0ce1 88 -cd $(buildinfodir) && rm -f eintr$(INFO_EXT) eintr$(INFO_EXT)-[1-9]
4c83f6e1
GM
89
90maintainer-clean: distclean infoclean
91
ea274122
GM
92.PHONY: dist
93
4c83f6e1 94dist:
17ca7950
GM
95 rm -rf emacs-lispintro-${version}
96 mkdir emacs-lispintro-${version}
4c83f6e1
GM
97 cp ${srcdir}/*.texi ${srcdir}/*.eps ${srcdir}/*.pdf \
98 ${texinfodir}/texinfo.tex \
17ca7950 99 ${srcdir}/ChangeLog* ${srcdir}/README emacs-lispintro-${version}/
4393405b 100 sed -e 's/@sr[c]dir@/./' -e 's/^\(texinfodir *=\).*/\1 ./' \
2fecccba
GM
101 -e 's/^\(buildinfodir *=\).*/\1 ./' \
102 -e 's/^\(clean:.*\)/\1 infoclean/' \
17ca7950
GM
103 -e "s/@ver[s]ion@/${version}/" \
104 ${srcdir}/Makefile.in > emacs-lispintro-${version}/Makefile
105 tar -cf emacs-lispintro-${version}.tar emacs-lispintro-${version}
106 rm -rf emacs-lispintro-${version}
8cda6f8f 107
4c83f6e1 108### Makefile ends here