Mercurial > emacs
annotate lispref/makefile.w32-in @ 83545:034f67f59091
Merged from emacs@sv.gnu.org.
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-479
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-480
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-481
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-482
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-483
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-484
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-485
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-153
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-154
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-155
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-585
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sun, 03 Dec 2006 12:25:18 +0000 |
parents | 408b3e9508a1 |
children | baed64986af0 |
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 |
68648
067115a6e738
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64889
diff
changeset
|
3 # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. |
52423 | 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 | |
64083 | 19 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 # Boston, MA 02110-1301, USA. | |
52423 | 21 |
22 # Standard configure variables. | |
23 srcdir = . | |
24 | |
25 infodir = $(srcdir)/../info | |
72607
408b3e9508a1
(usermanualdir): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
26 usermanualdir = $(srcdir)/../man |
52423 | 27 |
28 # Redefine `TEX' if `tex' does not invoke plain TeX. For example: | |
29 # TEX=platex | |
30 TEX=tex | |
31 INSTALL_INFO = install-info | |
63748 | 32 MAKEINFO = makeinfo --force |
52423 | 33 |
34 # The environment variable and its value to add $(srcdir) to the path | |
35 # searched for TeX input files. | |
36 texinputdir = $(srcdir)\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" /C | |
37 | |
38 # The name of the manual: | |
39 VERSION=2.9 | |
40 manual = elisp-manual-21-$(VERSION) | |
41 | |
42 # List of all the texinfo files in the manual: | |
43 | |
44 srcs = \ | |
45 $(srcdir)/abbrevs.texi \ | |
46 $(srcdir)/advice.texi \ | |
47 $(srcdir)/anti.texi \ | |
48 $(srcdir)/back.texi \ | |
49 $(srcdir)/backups.texi \ | |
50 $(srcdir)/buffers.texi \ | |
51 $(srcdir)/commands.texi \ | |
52 $(srcdir)/compile.texi \ | |
53 $(srcdir)/control.texi \ | |
54 $(srcdir)/customize.texi \ | |
55 $(srcdir)/debugging.texi \ | |
56 $(srcdir)/display.texi \ | |
57 $(srcdir)/edebug.texi \ | |
58 $(srcdir)/elisp.texi \ | |
59 $(srcdir)/errors.texi \ | |
60 $(srcdir)/eval.texi \ | |
61 $(srcdir)/files.texi \ | |
62 $(srcdir)/frames.texi \ | |
63 $(srcdir)/functions.texi \ | |
64 $(srcdir)/hash.texi \ | |
65 $(srcdir)/help.texi \ | |
66 $(srcdir)/hooks.texi \ | |
67 $(srcdir)/internals.texi \ | |
68 $(srcdir)/intro.texi \ | |
69 $(srcdir)/keymaps.texi \ | |
70 $(srcdir)/lists.texi \ | |
71 $(srcdir)/loading.texi \ | |
72 $(srcdir)/locals.texi \ | |
73 $(srcdir)/macros.texi \ | |
74 $(srcdir)/maps.texi \ | |
75 $(srcdir)/markers.texi \ | |
76 $(srcdir)/minibuf.texi \ | |
77 $(srcdir)/modes.texi \ | |
78 $(srcdir)/nonascii.texi \ | |
79 $(srcdir)/numbers.texi \ | |
80 $(srcdir)/objects.texi \ | |
81 $(srcdir)/os.texi \ | |
82 $(srcdir)/positions.texi \ | |
83 $(srcdir)/processes.texi \ | |
84 $(srcdir)/searching.texi \ | |
85 $(srcdir)/sequences.texi \ | |
86 $(srcdir)/streams.texi \ | |
87 $(srcdir)/strings.texi \ | |
88 $(srcdir)/symbols.texi \ | |
89 $(srcdir)/syntax.texi \ | |
90 $(srcdir)/text.texi \ | |
91 $(srcdir)/tips.texi \ | |
92 $(srcdir)/variables.texi \ | |
93 $(srcdir)/windows.texi \ | |
53810
8e3fcb111ffd
Sync with Makefile.in changes.
Jason Rumney <jasonr@gnu.org>
parents:
52428
diff
changeset
|
94 $(srcdir)/index.texi \ |
52423 | 95 $(srcdir)/gpl.texi \ |
96 $(srcdir)/doclicense.texi | |
97 | |
98 | |
99 .PHONY: clean | |
100 | |
101 # The info file is named `elisp'. | |
64689
41b16531418b
(info): Don't run install-info.
Eli Zaretskii <eliz@gnu.org>
parents:
64083
diff
changeset
|
102 |
52423 | 103 info: $(infodir)/elisp |
64689
41b16531418b
(info): Don't run install-info.
Eli Zaretskii <eliz@gnu.org>
parents:
64083
diff
changeset
|
104 |
41b16531418b
(info): Don't run install-info.
Eli Zaretskii <eliz@gnu.org>
parents:
64083
diff
changeset
|
105 $(infodir)/dir: |
52423 | 106 $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp |
107 | |
53810
8e3fcb111ffd
Sync with Makefile.in changes.
Jason Rumney <jasonr@gnu.org>
parents:
52428
diff
changeset
|
108 $(infodir)/elisp: $(srcs) |
57616
9b79e93065fc
(elisp): Change order of arguments to makeinfo.
Jason Rumney <jasonr@gnu.org>
parents:
56026
diff
changeset
|
109 $(MAKEINFO) -I. -I$(srcdir) -o $(infodir)/elisp $(srcdir)/elisp.texi |
52423 | 110 |
53810
8e3fcb111ffd
Sync with Makefile.in changes.
Jason Rumney <jasonr@gnu.org>
parents:
52428
diff
changeset
|
111 elisp.dvi: $(srcs) |
72607
408b3e9508a1
(usermanualdir): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
68648
diff
changeset
|
112 $(texinputdir) $(TEX) -I $(usermanualdir) $(srcdir)/elisp.texi |
52423 | 113 |
114 clean: | |
54200
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
115 - $(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
|
116 *.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
|
117 - $(DEL) make.out core |
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
118 - $(DEL) $(infodir)/elisp* |
52423 | 119 |
120 distclean: clean | |
121 | |
122 maintainer-clean: clean | |
54200
b0293635c42b
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
Juanma Barranquero <lekktu@gmail.com>
parents:
53810
diff
changeset
|
123 - $(DEL) elisp elisp-* elisp.dvi elisp.oaux |