(clean): Don't remove index.texi.
[emacs.git] / lispref / Makefile.in
blob79be5fc39af626b128081d7d3b25688edff8c793
1 # Makefile for the GNU Emacs Lisp Reference Manual.
3 # Copyright (C) 1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001,2003
4 # Free Software Foundation, Inc.
6 # This file is part of GNU Emacs.
8 # GNU Emacs is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs; see the file COPYING. If not, write to
20 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 # Boston, MA 02111-1307, USA.
23 # Standard configure variables.
24 srcdir = @srcdir@
26 # Tell make where to find source files; this is needed for the makefiles.
27 VPATH=@srcdir@
29 infodir = $(srcdir)/../info
31 TEXI2DVI = texi2dvi
32 SHELL = /bin/sh
33 INSTALL_INFO = install-info
34 MAKEINFO = makeinfo
36 # The name of the manual:
37 VERSION=2.9
38 manual = elisp-manual-21-$(VERSION)
40 # List of all the texinfo files in the manual:
42 srcs = \
43 $(srcdir)/abbrevs.texi \
44 $(srcdir)/advice.texi \
45 $(srcdir)/anti.texi \
46 $(srcdir)/back.texi \
47 $(srcdir)/backups.texi \
48 $(srcdir)/buffers.texi \
49 $(srcdir)/calendar.texi \
50 $(srcdir)/commands.texi \
51 $(srcdir)/compile.texi \
52 $(srcdir)/control.texi \
53 $(srcdir)/customize.texi \
54 $(srcdir)/debugging.texi \
55 $(srcdir)/display.texi \
56 $(srcdir)/edebug.texi \
57 $(srcdir)/elisp.texi \
58 $(srcdir)/errors.texi \
59 $(srcdir)/eval.texi \
60 $(srcdir)/files.texi \
61 $(srcdir)/frames.texi \
62 $(srcdir)/functions.texi \
63 $(srcdir)/hash.texi \
64 $(srcdir)/help.texi \
65 $(srcdir)/hooks.texi \
66 $(srcdir)/internals.texi \
67 $(srcdir)/intro.texi \
68 $(srcdir)/keymaps.texi \
69 $(srcdir)/lists.texi \
70 $(srcdir)/loading.texi \
71 $(srcdir)/locals.texi \
72 $(srcdir)/macros.texi \
73 $(srcdir)/maps.texi \
74 $(srcdir)/markers.texi \
75 $(srcdir)/minibuf.texi \
76 $(srcdir)/modes.texi \
77 $(srcdir)/nonascii.texi \
78 $(srcdir)/numbers.texi \
79 $(srcdir)/objects.texi \
80 $(srcdir)/os.texi \
81 $(srcdir)/positions.texi \
82 $(srcdir)/processes.texi \
83 $(srcdir)/searching.texi \
84 $(srcdir)/sequences.texi \
85 $(srcdir)/streams.texi \
86 $(srcdir)/strings.texi \
87 $(srcdir)/symbols.texi \
88 $(srcdir)/syntax.texi \
89 $(srcdir)/text.texi \
90 $(srcdir)/tips.texi \
91 $(srcdir)/variables.texi \
92 $(srcdir)/windows.texi \
93 $(srcdir)/index.texi \
94 $(srcdir)/gpl.texi \
95 $(srcdir)/doclicense.texi
98 .PHONY: clean
100 # The info file is named `elisp'.
101 info: $(infodir)/elisp
103 $(infodir)/elisp: $(srcs)
104 $(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp
106 elisp.dvi: $(srcs)
107 $(TEXI2DVI) -I $(srcdir) $(srcdir)/elisp.texi
109 install: elisp
110 $(srcdir)/mkinstalldirs $(infodir)
111 cp elisp elisp-* $(infodir)
112 ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/elisp
114 clean:
115 rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
116 *.vr *.vrs *.pg *.pgs *.ky *.kys
117 rm -f make.out core
119 distclean: clean
121 maintainer-clean: clean
122 rm -f elisp elisp-* elisp.dvi elisp.oaux
124 dist: elisp elisp.dvi
125 -rm -rf temp
126 -mkdir temp
127 -mkdir temp/$(manual)
128 -ln $(srcdir)/README $(srcdir)/configure.in $(srcdir)/configure \
129 $(srcdir)/Makefile.in $(srcs) \
130 $(srcdir)/../man/texinfo.tex \
131 elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] \
132 temp/$(manual)
133 -(cd temp/$(manual); rm -f mkinstalldirs)
134 cp $(srcdir)/mkinstalldirs temp/$(manual)
135 (cd temp/$(manual); rm -f *~)
136 (cd temp; tar chf - $(manual)) | gzip > $(manual).tar.gz
137 -rm -rf temp
139 # arch-tag: f5a1a94d-62e1-4460-a2d1-f02e538ab554