Mercurial > emacs
annotate lispref/makefile.w32-in @ 80009:e3aefab00216
* trampver.texi: Update release number.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Sat, 02 Feb 2008 10:57:12 +0000 |
parents | a1e16e813aed |
children |
rev | line source |
---|---|
55092
9077e3f7cd49
Add "-*- makefile -*-" mode tag.
Juanma Barranquero <lekktu@gmail.com>
parents:
54200
diff
changeset
|
1 # -*- Makefile -*- for the GNU Emacs Lisp Reference Manual. |
52423 | 2 |
79750 | 3 # Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 |
4 # Free Software Foundation, Inc. | |
52423 | 5 |
6 # This file is part of GNU Emacs. | |
7 | |
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 | |
78255
63591152f3cb
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
10 # the Free Software Foundation; either version 3, or (at your option) |
52423 | 11 # any later version. |
12 | |
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. | |
17 | |
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 | |
64083 | 20 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
21 # Boston, MA 02110-1301, USA. | |
52423 | 22 |
23 # Standard configure variables. | |
24 srcdir = . | |
25 | |
73548
227bb8f9276e
* makefile.w32-in: revert last change.
Chong Yidong <cyd@stupidchicken.com>
parents:
73536
diff
changeset
|
26 infodir = $(srcdir)/../info |
72607
408b3e9508a1
(usermanualdir): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
27 usermanualdir = $(srcdir)/../man |
52423 | 28 |
29 # Redefine `TEX' if `tex' does not invoke plain TeX. For example: | |
30 # TEX=platex | |
31 TEX=tex | |
32 INSTALL_INFO = install-info | |
63748 | 33 MAKEINFO = makeinfo --force |
52423 | 34 |
35 # The environment variable and its value to add $(srcdir) to the path | |
36 # searched for TeX input files. | |
37 texinputdir = $(srcdir)\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" /C | |
38 | |
39 # The name of the manual: | |
40 VERSION=2.9 | |
41 manual = elisp-manual-21-$(VERSION) | |
42 | |
43 # List of all the texinfo files in the manual: | |
44 | |
45 srcs = \ | |
46 $(srcdir)/abbrevs.texi \ | |
47 $(srcdir)/advice.texi \ | |
48 $(srcdir)/anti.texi \ | |
49 $(srcdir)/back.texi \ | |
50 $(srcdir)/backups.texi \ | |
51 $(srcdir)/buffers.texi \ | |
52 $(srcdir)/commands.texi \ | |
53 $(srcdir)/compile.texi \ | |
54 $(srcdir)/control.texi \ | |
55 $(srcdir)/customize.texi \ | |
56 $(srcdir)/debugging.texi \ | |
57 $(srcdir)/display.texi \ | |
58 $(srcdir)/edebug.texi \ | |
59 $(srcdir)/elisp.texi \ | |
60 $(srcdir)/errors.texi \ | |
61 $(srcdir)/eval.texi \ | |
62 $(srcdir)/files.texi \ | |
63 $(srcdir)/frames.texi \ | |
64 $(srcdir)/functions.texi \ | |
65 $(srcdir)/hash.texi \ | |
66 $(srcdir)/help.texi \ | |
67 $(srcdir)/hooks.texi \ | |
68 $(srcdir)/internals.texi \ | |
69 $(srcdir)/intro.texi \ | |
70 $(srcdir)/keymaps.texi \ | |
71 $(srcdir)/lists.texi \ | |
72 $(srcdir)/loading.texi \ | |
73 $(srcdir)/locals.texi \ | |
74 $(srcdir)/macros.texi \ | |
75 $(srcdir)/maps.texi \ | |
76 $(srcdir)/markers.texi \ | |
77 $(srcdir)/minibuf.texi \ | |
78 $(srcdir)/modes.texi \ | |
79 $(srcdir)/nonascii.texi \ | |
80 $(srcdir)/numbers.texi \ | |
81 $(srcdir)/objects.texi \ | |
82 $(srcdir)/os.texi \ | |
83 $(srcdir)/positions.texi \ | |
84 $(srcdir)/processes.texi \ | |
85 $(srcdir)/searching.texi \ | |
86 $(srcdir)/sequences.texi \ | |
87 $(srcdir)/streams.texi \ | |
88 $(srcdir)/strings.texi \ | |
89 $(srcdir)/symbols.texi \ | |
90 $(srcdir)/syntax.texi \ | |
91 $(srcdir)/text.texi \ | |
92 $(srcdir)/tips.texi \ | |
93 $(srcdir)/variables.texi \ | |
94 $(srcdir)/windows.texi \ | |
53810
8e3fcb111ffd
Sync with Makefile.in changes.
Jason Rumney <jasonr@gnu.org>
parents:
52428
diff
changeset
|
95 $(srcdir)/index.texi \ |
52423 | 96 $(srcdir)/gpl.texi \ |
97 $(srcdir)/doclicense.texi | |
98 | |
99 | |
100 .PHONY: clean | |
101 | |
102 # The info file is named `elisp'. | |
64689
41b16531418b
(info): Don't run install-info.
Eli Zaretskii <eliz@gnu.org>
parents:
64083
diff
changeset
|
103 |
52423 | 104 info: $(infodir)/elisp |
64689
41b16531418b
(info): Don't run install-info.
Eli Zaretskii <eliz@gnu.org>
parents:
64083
diff
changeset
|
105 |
41b16531418b
(info): Don't run install-info.
Eli Zaretskii <eliz@gnu.org>
parents:
64083
diff
changeset
|
106 $(infodir)/dir: |
52423 | 107 $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp |
108 | |
53810
8e3fcb111ffd
Sync with Makefile.in changes.
Jason Rumney <jasonr@gnu.org>
parents:
52428
diff
changeset
|
109 $(infodir)/elisp: $(srcs) |
73548
227bb8f9276e
* makefile.w32-in: revert last change.
Chong Yidong <cyd@stupidchicken.com>
parents:
73536
diff
changeset
|
110 $(MAKEINFO) -I. -I$(srcdir) -o $(infodir)/elisp $(srcdir)/elisp.texi |
52423 | 111 |
53810
8e3fcb111ffd
Sync with Makefile.in changes.
Jason Rumney <jasonr@gnu.org>
parents:
52428
diff
changeset
|
112 elisp.dvi: $(srcs) |
72607
408b3e9508a1
(usermanualdir): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
113 $(texinputdir) $(TEX) -I $(usermanualdir) $(srcdir)/elisp.texi |
52423 | 114 |
115 clean: | |
54200
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
116 - $(DEL) *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ |
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
117 *.vr *.vrs *.pg *.pgs *.ky *.kys |
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
118 - $(DEL) make.out core |
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
119 - $(DEL) $(infodir)/elisp* |
52423 | 120 |
121 distclean: clean | |
122 | |
74472
389355f7baa3
(maintainer-clean): Depend on `distclean'. Don't remove elisp* info files;
Juanma Barranquero <lekktu@gmail.com>
parents:
73548
diff
changeset
|
123 maintainer-clean: distclean |
74517
8864966dbf05
(maintainer-clean): Partially revert last change; delete "elisp-?"
Juanma Barranquero <lekktu@gmail.com>
parents:
74472
diff
changeset
|
124 - $(DEL) elisp elisp-? elisp-?? elisp.dvi elisp.oaux |