annotate doc/misc/Makefile.in @ 110882:b8bcd2311f78

Avoid having a directory as a prerequisite in doc Makefiles. It does not play well with time-stamping. * doc/misc/Makefile.in ($(infodir)): Delete rule. (mkinfodir): New. Use it in all the info rules, rather than depending on infodir. * doc/lispref/Makefile.in ($(infodir)): Delete rule. (mkinfodir): New. ($(infodir)/elisp): Use $mkinfodir instead of infodir. * doc/lispintro/Makefile.in ($(infodir)): Delete rule. (mkinfodir): New. ($(infodir)/eintr): Use $mkinfodir instead of infodir. * doc/emacs/Makefile.in ($(infodir)): Delete rule. (mkinfodir): New. ($(infodir)/emacs): Use $mkinfodir instead of infodir.
author Glenn Morris <rgm@gnu.org>
date Sat, 09 Oct 2010 11:31:12 -0700
parents 4b97fee97310
children 9d181264b9f9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
1 #### Makefile for documentation other than the Emacs manual.
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
3 # Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
110642
35c472420ce6 Remove unused variable top_srcdir from doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
4 # 2004, 2005, 2006, 2007, 2008, 2009, 2010
35c472420ce6 Remove unused variable top_srcdir from doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
5 # Free Software Foundation, Inc.
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
6
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7 # This file is part of GNU Emacs.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
8
95032
fbe58782bc21 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91647
diff changeset
9 # GNU Emacs is free software: you can redistribute it and/or modify
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
10 # it under the terms of the GNU General Public License as published by
95032
fbe58782bc21 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91647
diff changeset
11 # the Free Software Foundation, either version 3 of the License, or
fbe58782bc21 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91647
diff changeset
12 # (at your option) any later version.
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
13
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
14 # GNU Emacs is distributed in the hope that it will be useful,
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
17 # GNU General Public License for more details.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
18
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
19 # You should have received a copy of the GNU General Public License
95032
fbe58782bc21 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91647
diff changeset
20 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
21
110781
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
22 SHELL = /bin/sh
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
23
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
24 # Where to find the source code. $(srcdir) will be the man-aux
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
25 # subdirectory of the source tree. This is
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
26 # set by the configure script's `--srcdir' option.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
27 srcdir=@srcdir@
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
28
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
29 # Tell make where to find source files; this is needed for the makefiles.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
30 VPATH=@srcdir@
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
31
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
32 ## Where the output files go.
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
33 ## Note that the setfilename command in the .texi files assumes this.
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
34 infodir=../../info
110863
f537cb2035e9 Set the version number in the texinfo manuals using configure.
Glenn Morris <rgm@gnu.org>
parents: 110861
diff changeset
35 ## Directory with emacsver.texi.
f537cb2035e9 Set the version number in the texinfo manuals using configure.
Glenn Morris <rgm@gnu.org>
parents: 110861
diff changeset
36 ## Currently only used by efaq; could be added to MAKEINFO.
f537cb2035e9 Set the version number in the texinfo manuals using configure.
Glenn Morris <rgm@gnu.org>
parents: 110861
diff changeset
37 emacsdir = $(srcdir)/../emacs
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
38
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
39 # The makeinfo program is part of the Texinfo distribution.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
40 # Use --force so that it generates output even if there are errors.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
41 MAKEINFO = makeinfo --force
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
42
102390
f52db8c1d1b5 Comment.
Glenn Morris <rgm@gnu.org>
parents: 102370
diff changeset
43 # Also add new entries to INFO_FILES in the top-level Makefile.in.
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
44 INFO_TARGETS = \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
45 $(infodir)/ada-mode \
102370
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
46 $(infodir)/auth \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
47 $(infodir)/autotype \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
48 $(infodir)/calc \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
49 $(infodir)/ccmode \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
50 $(infodir)/cl \
87004
0877a1d16074 * Makefile.in (INFO_TARGETS, DVI_TARGETS): Apply dbus and dbus.dvi
Michael Albinus <michael.albinus@gmx.de>
parents: 86943
diff changeset
51 $(infodir)/dbus \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
52 $(infodir)/dired-x \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
53 $(infodir)/ebrowse \
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
54 $(infodir)/ede \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
55 $(infodir)/ediff \
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
56 $(infodir)/edt \
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
57 $(infodir)/eieio \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
58 $(infodir)/emacs-mime \
91647
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
59 $(infodir)/epa \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
60 $(infodir)/erc \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
61 $(infodir)/eshell \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
62 $(infodir)/eudc \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
63 $(infodir)/efaq \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
64 $(infodir)/flymake \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
65 $(infodir)/forms \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
66 $(infodir)/gnus \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
67 $(infodir)/idlwave \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
68 $(infodir)/info \
97102
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
69 $(infodir)/mairix-el \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
70 $(infodir)/message \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
71 $(infodir)/mh-e \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
72 $(infodir)/newsticker \
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
73 $(infodir)/nxml-mode \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
74 $(infodir)/org \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
75 $(infodir)/pcl-cvs \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
76 $(infodir)/pgg \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
77 $(infodir)/rcirc \
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
78 $(infodir)/remember \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
79 $(infodir)/reftex \
95928
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
80 $(infodir)/sasl \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
81 $(infodir)/sc \
106061
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
82 $(infodir)/semantic \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
83 $(infodir)/ses \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
84 $(infodir)/sieve \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
85 $(infodir)/smtpmail \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
86 $(infodir)/speedbar \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
87 $(infodir)/tramp \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
88 $(infodir)/url \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
89 $(infodir)/vip \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
90 $(infodir)/viper \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
91 $(infodir)/widget \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
92 $(infodir)/woman
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
93
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
94 DVI_TARGETS = \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
95 ada-mode.dvi \
102370
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
96 auth.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
97 autotype.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
98 calc.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
99 cc-mode.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
100 cl.dvi \
87004
0877a1d16074 * Makefile.in (INFO_TARGETS, DVI_TARGETS): Apply dbus and dbus.dvi
Michael Albinus <michael.albinus@gmx.de>
parents: 86943
diff changeset
101 dbus.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
102 dired-x.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
103 ebrowse.dvi \
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
104 ede.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
105 ediff.dvi \
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
106 edt.dvi \
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
107 eieio.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
108 emacs-mime.dvi \
91647
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
109 epa.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
110 erc.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
111 eshell.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
112 eudc.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
113 faq.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
114 flymake.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
115 forms.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
116 gnus.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
117 idlwave.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
118 info.dvi \
97102
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
119 mairix-el.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
120 message.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
121 mh-e.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
122 newsticker.dvi \
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
123 nxml-mode.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
124 org.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
125 pcl-cvs.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
126 pgg.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
127 rcirc.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
128 reftex.dvi \
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
129 remember.dvi \
95928
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
130 sasl.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
131 sc.dvi \
106061
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
132 semantic.dvi \
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
133 ses.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
134 sieve.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
135 smtpmail.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
136 speedbar.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
137 tramp.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
138 url.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
139 vip.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
140 viper.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
141 widget.dvi \
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
142 woman.dvi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
143
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
144 PDF_TARGETS = \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
145 ada-mode.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
146 auth.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
147 autotype.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
148 calc.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
149 cc-mode.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
150 cl.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
151 dbus.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
152 dired-x.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
153 ebrowse.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
154 ede.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
155 ediff.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
156 edt.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
157 eieio.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
158 emacs-mime.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
159 epa.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
160 erc.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
161 eshell.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
162 eudc.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
163 faq.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
164 flymake.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
165 forms.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
166 gnus.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
167 idlwave.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
168 info.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
169 mairix-el.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
170 message.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
171 mh-e.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
172 newsticker.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
173 nxml-mode.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
174 org.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
175 pcl-cvs.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
176 pgg.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
177 rcirc.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
178 reftex.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
179 remember.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
180 sasl.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
181 sc.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
182 semantic.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
183 ses.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
184 sieve.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
185 smtpmail.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
186 speedbar.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
187 tramp.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
188 url.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
189 vip.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
190 viper.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
191 widget.pdf \
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
192 woman.pdf
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
193
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
194 TEXI2DVI = texi2dvi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
195 TEXI2PDF = texi2pdf
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
196
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
197 # The following rule does not work with all versions of `make'.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
198 .SUFFIXES: .texi .dvi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
199 .texi.dvi:
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
200 $(TEXI2DVI) $<
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
201
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
202 ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
203
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
204 mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir}
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
205
110861
ca28093784c4 Mark some doc/ rules as PHONY.
Glenn Morris <rgm@gnu.org>
parents: 110786
diff changeset
206 .PHONY: info dvi pdf
ca28093784c4 Mark some doc/ rules as PHONY.
Glenn Morris <rgm@gnu.org>
parents: 110786
diff changeset
207
110781
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
208 info: $(INFO_TARGETS)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
209
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
210 dvi: $(DVI_TARGETS)
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
211
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
212 pdf: $(PDF_TARGETS)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
213
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
214 # Note that all the Info targets build the Info files
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
215 # in srcdir. There is no provision for Info files
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
216 # to exist in the build directory.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
217 # In a distribution of Emacs, the Info files should be up to date.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
218
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
219 ## "short" target names for convenience, to just rebuild one manual.
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
220 ada-mode : $(infodir)/ada-mode
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
221 $(infodir)/ada-mode: ada-mode.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
222 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
223 cd $(srcdir); $(MAKEINFO) ada-mode.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
224 ada-mode.dvi: ada-mode.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
225 $(ENVADD) $(TEXI2DVI) ${srcdir}/ada-mode.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
226 ada-mode.pdf: ada-mode.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
227 $(ENVADD) $(TEXI2PDF) ${srcdir}/ada-mode.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
228
102370
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
229 auth : $(infodir)/auth
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
230 $(infodir)/auth: auth.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
231 $(mkinfodir)
102370
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
232 cd $(srcdir); $(MAKEINFO) auth.texi
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
233 auth.dvi: auth.texi
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
234 $(ENVADD) $(TEXI2DVI) ${srcdir}/auth.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
235 auth.pdf: auth.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
236 $(ENVADD) $(TEXI2PDF) ${srcdir}/auth.texi
102370
2c2214eb4f14 (INFO_TARGETS, DVI_TARGETS): Add auth.
Glenn Morris <rgm@gnu.org>
parents: 100974
diff changeset
237
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
238 autotype : $(infodir)/autotype
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
239 $(infodir)/autotype: autotype.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
240 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
241 cd $(srcdir); $(MAKEINFO) autotype.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
242 autotype.dvi: autotype.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
243 $(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
244 autotype.pdf: autotype.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
245 $(ENVADD) $(TEXI2PDF) ${srcdir}/autotype.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
246
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
247 calc : $(infodir)/calc
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
248 $(infodir)/calc: calc.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
249 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
250 cd $(srcdir); $(MAKEINFO) calc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
251 calc.dvi: calc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
252 $(ENVADD) $(TEXI2DVI) ${srcdir}/calc.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
253 calc.pdf: calc.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
254 $(ENVADD) $(TEXI2PDF) ${srcdir}/calc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
255
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
256 ccmode : $(infodir)/ccmode
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
257 $(infodir)/ccmode: cc-mode.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
258 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
259 cd $(srcdir); $(MAKEINFO) cc-mode.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
260 cc-mode.dvi: cc-mode.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
261 $(ENVADD) $(TEXI2DVI) ${srcdir}/cc-mode.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
262 cc-mode.pdf: cc-mode.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
263 $(ENVADD) $(TEXI2PDF) ${srcdir}/cc-mode.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
264
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
265 cl : $(infodir)/cl
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
266 $(infodir)/cl: cl.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
267 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
268 cd $(srcdir); $(MAKEINFO) cl.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
269 cl.dvi: cl.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
270 $(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
271 cl.pdf: cl.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
272 $(ENVADD) $(TEXI2PDF) ${srcdir}/cl.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
273
86943
791f39a2f656 * Makefile.in (INFO_TARGETS): Add dbus.
Michael Albinus <michael.albinus@gmx.de>
parents: 86378
diff changeset
274 dbus : $(infodir)/dbus
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
275 $(infodir)/dbus: dbus.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
276 $(mkinfodir)
86943
791f39a2f656 * Makefile.in (INFO_TARGETS): Add dbus.
Michael Albinus <michael.albinus@gmx.de>
parents: 86378
diff changeset
277 cd $(srcdir); $(MAKEINFO) dbus.texi
791f39a2f656 * Makefile.in (INFO_TARGETS): Add dbus.
Michael Albinus <michael.albinus@gmx.de>
parents: 86378
diff changeset
278 dbus.dvi: dbus.texi
791f39a2f656 * Makefile.in (INFO_TARGETS): Add dbus.
Michael Albinus <michael.albinus@gmx.de>
parents: 86378
diff changeset
279 $(ENVADD) $(TEXI2DVI) ${srcdir}/dbus.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
280 dbus.pdf: dbus.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
281 $(ENVADD) $(TEXI2PDF) ${srcdir}/dbus.texi
86943
791f39a2f656 * Makefile.in (INFO_TARGETS): Add dbus.
Michael Albinus <michael.albinus@gmx.de>
parents: 86378
diff changeset
282
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
283 dired-x : $(infodir)/dired-x
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
284 $(infodir)/dired-x: dired-x.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
285 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
286 cd $(srcdir); $(MAKEINFO) dired-x.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
287 dired-x.dvi: dired-x.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
288 $(ENVADD) $(TEXI2DVI) ${srcdir}/dired-x.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
289 dired-x.pdf: dired-x.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
290 $(ENVADD) $(TEXI2PDF) ${srcdir}/dired-x.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
291
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
292 ebrowse : $(infodir)/ebrowse
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
293 $(infodir)/ebrowse: ebrowse.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
294 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
295 cd $(srcdir); $(MAKEINFO) ebrowse.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
296 ebrowse.dvi: ebrowse.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
297 $(ENVADD) $(TEXI2DVI) ${srcdir}/ebrowse.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
298 ebrowse.pdf: ebrowse.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
299 $(ENVADD) $(TEXI2PDF) ${srcdir}/ebrowse.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
300
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
301 ede : $(infodir)/ede
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
302 $(infodir)/ede: ede.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
303 $(mkinfodir)
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
304 cd $(srcdir); $(MAKEINFO) ede.texi
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
305 ede.dvi: ede.texi
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
306 $(ENVADD) $(TEXI2DVI) ${srcdir}/ede.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
307 ede.pdf: ede.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
308 $(ENVADD) $(TEXI2PDF) ${srcdir}/ede.texi
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
309
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
310 ediff : $(infodir)/ediff
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
311 $(infodir)/ediff: ediff.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
312 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
313 cd $(srcdir); $(MAKEINFO) ediff.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
314 ediff.dvi: ediff.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
315 $(ENVADD) $(TEXI2DVI) ${srcdir}/ediff.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
316 ediff.pdf: ediff.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
317 $(ENVADD) $(TEXI2PDF) ${srcdir}/ediff.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
318
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
319 edt : $(infodir)/edt
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
320 $(infodir)/edt: edt.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
321 $(mkinfodir)
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
322 cd $(srcdir); $(MAKEINFO) edt.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
323 edt.dvi: edt.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
324 $(ENVADD) $(TEXI2DVI) ${srcdir}/edt.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
325 edt.pdf: edt.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
326 $(ENVADD) $(TEXI2PDF) ${srcdir}/edt.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
327
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
328 eieio : $(infodir)/eieio
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
329 $(infodir)/eieio: eieio.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
330 $(mkinfodir)
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
331 cd $(srcdir); $(MAKEINFO) eieio.texi
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
332 eieio.dvi: eieio.texi
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
333 $(ENVADD) $(TEXI2DVI) ${srcdir}/eieio.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
334 eieio.pdf: eieio.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
335 $(ENVADD) $(TEXI2PDF) ${srcdir}/eieio.texi
105494
6104e7688824 * eieio.texi:
Chong Yidong <cyd@stupidchicken.com>
parents: 102390
diff changeset
336
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
337 emacs-mime : $(infodir)/emacs-mime
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
338 $(infodir)/emacs-mime: emacs-mime.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
339 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
340 cd $(srcdir); $(MAKEINFO) --enable-encoding emacs-mime.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
341 emacs-mime.dvi: emacs-mime.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
342 $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-mime.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
343 emacs-mime.pdf: emacs-mime.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
344 $(ENVADD) $(TEXI2PDF) ${srcdir}/emacs-mime.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
345
91647
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
346 epa : $(infodir)/epa
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
347 $(infodir)/epa: epa.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
348 $(mkinfodir)
91647
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
349 cd $(srcdir); $(MAKEINFO) epa.texi
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
350 epa.dvi: epa.texi
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
351 $(ENVADD) $(TEXI2DVI) ${srcdir}/epa.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
352 epa.pdf: epa.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
353 $(ENVADD) $(TEXI2PDF) ${srcdir}/epa.texi
91647
f9692dfe86e7 EasyPG: Initial check-in.
Michael Olson <mwolson@gnu.org>
parents: 87903
diff changeset
354
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
355 erc : $(infodir)/erc
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
356 $(infodir)/erc: erc.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
357 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
358 cd $(srcdir); $(MAKEINFO) erc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
359 erc.dvi: erc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
360 $(ENVADD) $(TEXI2DVI) ${srcdir}/erc.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
361 erc.pdf: erc.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
362 $(ENVADD) $(TEXI2PDF) ${srcdir}/erc.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
363
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
364 eshell : $(infodir)/eshell
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
365 $(infodir)/eshell: eshell.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
366 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
367 cd $(srcdir); $(MAKEINFO) eshell.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
368 eshell.dvi: eshell.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
369 $(ENVADD) $(TEXI2DVI) ${srcdir}/eshell.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
370 eshell.pdf: eshell.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
371 $(ENVADD) $(TEXI2PDF) ${srcdir}/eshell.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
372
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
373 eudc : $(infodir)/eudc
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
374 $(infodir)/eudc: eudc.texi
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
375 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
376 cd $(srcdir); $(MAKEINFO) eudc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
377 eudc.dvi: eudc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
378 $(ENVADD) $(TEXI2DVI) ${srcdir}/eudc.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
379 eudc.pdf: eudc.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
380 $(ENVADD) $(TEXI2PDF) ${srcdir}/eudc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
381
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
382 efaq : $(infodir)/efaq
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
383 $(infodir)/efaq: faq.texi $(emacsdir)/emacsver.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
384 $(mkinfodir)
110863
f537cb2035e9 Set the version number in the texinfo manuals using configure.
Glenn Morris <rgm@gnu.org>
parents: 110861
diff changeset
385 cd $(srcdir); $(MAKEINFO) -I $(emacsdir) faq.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
386 faq.dvi: faq.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
387 $(ENVADD) $(TEXI2DVI) ${srcdir}/faq.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
388 faq.pdf: faq.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
389 $(ENVADD) $(TEXI2PDF) ${srcdir}/faq.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
390
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
391 flymake : $(infodir)/flymake
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
392 $(infodir)/flymake: flymake.texi
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
393 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
394 cd $(srcdir); $(MAKEINFO) flymake.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
395 flymake.dvi: flymake.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
396 $(ENVADD) $(TEXI2DVI) ${srcdir}/flymake.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
397 flymake.pdf: flymake.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
398 $(ENVADD) $(TEXI2PDF) ${srcdir}/flymake.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
399
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
400 forms : $(infodir)/forms
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
401 $(infodir)/forms: forms.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
402 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
403 cd $(srcdir); $(MAKEINFO) forms.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
404 forms.dvi: forms.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
405 $(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
406 forms.pdf: forms.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
407 $(ENVADD) $(TEXI2PDF) ${srcdir}/forms.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
408
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
409 # gnus/message/emacs-mime/sieve/pgg are part of Gnus:
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
410 gnus : $(infodir)/gnus
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
411 $(infodir)/gnus: gnus.texi gnus-faq.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
412 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
413 cd $(srcdir); $(MAKEINFO) gnus.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
414 gnus.dvi: gnus.texi gnus-faq.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
415 sed -e '/@iflatex/,/@end iflatex/d' ${srcdir}/gnus.texi > gnustmp.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
416 $(ENVADD) $(TEXI2DVI) gnustmp.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
417 cp gnustmp.dvi $*.dvi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
418 rm gnustmp.*
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
419 gnus.pdf: gnus.texi gnus-faq.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
420 sed -e '/@iflatex/,/@end iflatex/d' ${srcdir}/gnus.texi > gnustmp.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
421 $(ENVADD) $(TEXI2PDF) gnustmp.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
422 cp gnustmp.pdf $@
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
423 rm gnustmp.*
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
424
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
425 # This is produced with --no-split to avoid making files whose
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
426 # names clash on DOS 8+3 filesystems
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
427 idlwave : $(infodir)/idlwave
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
428 $(infodir)/idlwave: idlwave.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
429 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
430 cd $(srcdir); $(MAKEINFO) --no-split idlwave.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
431 idlwave.dvi: idlwave.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
432 $(ENVADD) $(TEXI2DVI) ${srcdir}/idlwave.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
433 idlwave.pdf: idlwave.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
434 $(ENVADD) $(TEXI2PDF) ${srcdir}/idlwave.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
435
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
436 # The following target uses an explicit -o switch to work around
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
437 # the @setfilename directive in info.texi, which is required for
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
438 # the Texinfo distribution.
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
439 ###info : $(infodir)/info # circular!
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
440 $(infodir)/info: info.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
441 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
442 cd $(srcdir); $(MAKEINFO) --no-split info.texi -o $@
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
443 info.dvi: info.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
444 $(ENVADD) $(TEXI2DVI) ${srcdir}/info.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
445 info.pdf: info.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
446 $(ENVADD) $(TEXI2PDF) ${srcdir}/info.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
447
97102
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
448 mairix-el : $(infodir)/mairix-el
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
449 $(infodir)/mairix-el: mairix-el.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
450 $(mkinfodir)
97102
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
451 cd $(srcdir); $(MAKEINFO) mairix-el.texi
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
452 mairix-el.dvi: mairix-el.texi
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
453 $(ENVADD) $(TEXI2DVI) ${srcdir}/mairix-el.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
454 mairix-el.pdf: mairix-el.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
455 $(ENVADD) $(TEXI2PDF) ${srcdir}/mairix-el.texi
97102
ac037a911bec Add mairix-el targets.
Chong Yidong <cyd@stupidchicken.com>
parents: 96808
diff changeset
456
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
457 message : $(infodir)/message
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
458 $(infodir)/message: message.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
459 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
460 cd $(srcdir); $(MAKEINFO) message.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
461 message.dvi: message.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
462 $(ENVADD) $(TEXI2DVI) ${srcdir}/message.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
463 message.pdf: message.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
464 $(ENVADD) $(TEXI2PDF) ${srcdir}/message.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
465
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
466 mh-e : $(infodir)/mh-e
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
467 $(infodir)/mh-e: mh-e.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
468 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
469 cd $(srcdir); $(MAKEINFO) mh-e.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
470 mh-e.dvi: mh-e.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
471 $(ENVADD) $(TEXI2DVI) ${srcdir}/mh-e.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
472 mh-e.pdf: mh-e.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
473 $(ENVADD) $(TEXI2PDF) ${srcdir}/mh-e.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
474
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
475 newsticker : $(infodir)/newsticker
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
476 $(infodir)/newsticker: newsticker.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
477 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
478 cd $(srcdir); $(MAKEINFO) newsticker.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
479 newsticker.dvi: newsticker.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
480 $(ENVADD) $(TEXI2DVI) ${srcdir}/newsticker.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
481 newsticker.pdf: newsticker.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
482 $(ENVADD) $(TEXI2PDF) ${srcdir}/newsticker.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
483
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
484 nxml-mode : $(infodir)/nxml-mode
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
485 $(infodir)/nxml-mode: nxml-mode.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
486 $(mkinfodir)
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
487 cd $(srcdir); $(MAKEINFO) nxml-mode.texi
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
488 nxml-mode.dvi: nxml-mode.texi
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
489 $(ENVADD) $(TEXI2DVI) ${srcdir}/nxml-mode.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
490 nxml-mode.pdf: nxml-mode.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
491 $(ENVADD) $(TEXI2PDF) ${srcdir}/nxml-mode.texi
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
492
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
493 org : $(infodir)/org
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
494 $(infodir)/org: org.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
495 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
496 cd $(srcdir); $(MAKEINFO) org.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
497 org.dvi: org.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
498 $(ENVADD) $(TEXI2DVI) ${srcdir}/org.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
499 org.pdf: org.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
500 $(ENVADD) $(TEXI2PDF) ${srcdir}/org.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
501
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
502 pcl-cvs : $(infodir)/pcl-cvs
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
503 $(infodir)/pcl-cvs: pcl-cvs.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
504 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
505 cd $(srcdir); $(MAKEINFO) pcl-cvs.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
506 pcl-cvs.dvi: pcl-cvs.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
507 $(ENVADD) $(TEXI2DVI) ${srcdir}/pcl-cvs.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
508 pcl-cvs.pdf: pcl-cvs.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
509 $(ENVADD) $(TEXI2PDF) ${srcdir}/pcl-cvs.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
510
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
511 pgg : $(infodir)/pgg
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
512 $(infodir)/pgg: pgg.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
513 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
514 cd $(srcdir); $(MAKEINFO) pgg.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
515 pgg.dvi: pgg.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
516 $(ENVADD) $(TEXI2DVI) ${srcdir}/pgg.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
517 pgg.pdf: pgg.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
518 $(ENVADD) $(TEXI2PDF) ${srcdir}/pgg.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
519
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
520 rcirc : $(infodir)/rcirc
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
521 $(infodir)/rcirc: rcirc.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
522 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
523 cd $(srcdir); $(MAKEINFO) rcirc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
524 rcirc.dvi: rcirc.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
525 $(ENVADD) $(TEXI2DVI) ${srcdir}/rcirc.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
526 rcirc.pdf: rcirc.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
527 $(ENVADD) $(TEXI2PDF) ${srcdir}/rcirc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
528
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
529 reftex : $(infodir)/reftex
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
530 $(infodir)/reftex: reftex.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
531 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
532 cd $(srcdir); $(MAKEINFO) reftex.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
533 reftex.dvi: reftex.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
534 $(ENVADD) $(TEXI2DVI) ${srcdir}/reftex.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
535 reftex.pdf: reftex.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
536 $(ENVADD) $(TEXI2PDF) ${srcdir}/reftex.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
537
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
538 remember : $(infodir)/remember
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
539 $(infodir)/remember: remember.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
540 $(mkinfodir)
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
541 cd $(srcdir); $(MAKEINFO) remember.texi
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
542 remember.dvi: remember.texi
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
543 $(ENVADD) $(TEXI2DVI) ${srcdir}/remember.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
544 remember.pdf: remember.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
545 $(ENVADD) $(TEXI2PDF) ${srcdir}/remember.texi
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
546
95928
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
547 sasl : $(infodir)/sasl
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
548 $(infodir)/sasl: sasl.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
549 $(mkinfodir)
95928
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
550 cd $(srcdir); $(MAKEINFO) sasl.texi
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
551 sasl.dvi: sasl.texi
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
552 $(ENVADD) $(TEXI2DVI) ${srcdir}/sasl.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
553 sasl.pdf: sasl.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
554 $(ENVADD) $(TEXI2PDF) ${srcdir}/sasl.texi
95928
d5a620178534 (INFO_TARGETS, DVI_TARGETS): Add sasl.
Glenn Morris <rgm@gnu.org>
parents: 95032
diff changeset
555
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
556 sc : $(infodir)/sc
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
557 $(infodir)/sc: sc.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
558 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
559 cd $(srcdir); $(MAKEINFO) sc.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
560 sc.dvi: sc.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
561 $(ENVADD) $(TEXI2DVI) ${srcdir}/sc.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
562 sc.pdf: sc.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
563 $(ENVADD) $(TEXI2PDF) ${srcdir}/sc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
564
106061
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
565 semantic : $(infodir)/semantic
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
566 $(infodir)/semantic: semantic.texi sem-user.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
567 $(mkinfodir)
106061
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
568 cd $(srcdir); $(MAKEINFO) semantic.texi
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
569 semantic.dvi: semantic.texi
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
570 $(ENVADD) $(TEXI2DVI) ${srcdir}/semantic.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
571 semantic.pdf: semantic.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
572 $(ENVADD) $(TEXI2PDF) ${srcdir}/semantic.texi
106061
014672c3a25f * Makefile.in: Build the Semantic manual.
Chong Yidong <cyd@stupidchicken.com>
parents: 105494
diff changeset
573
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
574 ses : $(infodir)/ses
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
575 $(infodir)/ses: ses.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
576 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
577 cd $(srcdir); $(MAKEINFO) ses.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
578 ses.dvi: ses.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
579 $(ENVADD) $(TEXI2DVI) ${srcdir}/ses.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
580 ses.pdf: ses.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
581 $(ENVADD) $(TEXI2PDF) ${srcdir}/ses.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
582
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
583 sieve : $(infodir)/sieve
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
584 $(infodir)/sieve: sieve.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
585 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
586 cd $(srcdir); $(MAKEINFO) sieve.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
587 sieve.dvi: sieve.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
588 $(ENVADD) $(TEXI2DVI) ${srcdir}/sieve.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
589 sieve.pdf: sieve.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
590 $(ENVADD) $(TEXI2PDF) ${srcdir}/sieve.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
591
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
592 smtpmail : $(infodir)/smtpmail
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
593 $(infodir)/smtpmail: smtpmail.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
594 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
595 cd $(srcdir); $(MAKEINFO) smtpmail.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
596 smtpmail.dvi: smtpmail.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
597 $(ENVADD) $(TEXI2DVI) ${srcdir}/smtpmail.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
598 smtpmail.pdf: smtpmail.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
599 $(ENVADD) $(TEXI2PDF) ${srcdir}/smtpmail.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
600
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
601 speedbar : $(infodir)/speedbar
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
602 $(infodir)/speedbar: speedbar.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
603 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
604 cd $(srcdir); $(MAKEINFO) speedbar.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
605 speedbar.dvi: speedbar.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
606 $(ENVADD) $(TEXI2DVI) ${srcdir}/speedbar.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
607 speedbar.pdf: speedbar.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
608 $(ENVADD) $(TEXI2PDF) ${srcdir}/speedbar.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
609
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
610 tramp : $(infodir)/tramp
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
611 $(infodir)/tramp: tramp.texi trampver.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
612 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
613 cd $(srcdir); $(MAKEINFO) -D emacs tramp.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
614 tramp.dvi: tramp.texi trampver.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
615 $(ENVADD) $(TEXI2DVI) ${srcdir}/tramp.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
616 tramp.pdf: tramp.texi trampver.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
617 $(ENVADD) $(TEXI2PDF) ${srcdir}/tramp.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
618
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
619 url : $(infodir)/url
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
620 $(infodir)/url: url.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
621 $(mkinfodir)
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
622 cd $(srcdir); $(MAKEINFO) url.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
623 url.dvi: url.texi
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
624 $(ENVADD) $(TEXI2DVI) ${srcdir}/url.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
625 url.pdf: url.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
626 $(ENVADD) $(TEXI2PDF) ${srcdir}/url.texi
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
627
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
628 vip : $(infodir)/vip
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
629 $(infodir)/vip: vip.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
630 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
631 cd $(srcdir); $(MAKEINFO) vip.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
632 vip.dvi: vip.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
633 $(ENVADD) $(TEXI2DVI) ${srcdir}/vip.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
634 vip.pdf: vip.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
635 $(ENVADD) $(TEXI2PDF) ${srcdir}/vip.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
636
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
637 viper : $(infodir)/viper
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
638 $(infodir)/viper: viper.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
639 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
640 cd $(srcdir); $(MAKEINFO) viper.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
641 viper.dvi: viper.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
642 $(ENVADD) $(TEXI2DVI) ${srcdir}/viper.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
643 viper.pdf: viper.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
644 $(ENVADD) $(TEXI2PDF) ${srcdir}/viper.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
645
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
646 widget : $(infodir)/widget
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
647 $(infodir)/widget: widget.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
648 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
649 cd $(srcdir); $(MAKEINFO) widget.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
650 widget.dvi: widget.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
651 $(ENVADD) $(TEXI2DVI) ${srcdir}/widget.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
652 widget.pdf: widget.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
653 $(ENVADD) $(TEXI2PDF) ${srcdir}/widget.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
654
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
655 woman : $(infodir)/woman
110882
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
656 $(infodir)/woman: woman.texi
b8bcd2311f78 Avoid having a directory as a prerequisite in doc Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110866
diff changeset
657 $(mkinfodir)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
658 cd $(srcdir); $(MAKEINFO) woman.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
659 woman.dvi: woman.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
660 $(ENVADD) $(TEXI2DVI) ${srcdir}/woman.texi
106584
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
661 woman.pdf: woman.texi
cdeb7eaac6f4 (INFO_TARGETS, DVI_TARGETS): Add edt.
Glenn Morris <rgm@gnu.org>
parents: 106061
diff changeset
662 $(ENVADD) $(TEXI2PDF) ${srcdir}/woman.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
663
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
664
110861
ca28093784c4 Mark some doc/ rules as PHONY.
Glenn Morris <rgm@gnu.org>
parents: 110786
diff changeset
665 .PHONY: mostlyclean clean distclean maintainer-clean
ca28093784c4 Mark some doc/ rules as PHONY.
Glenn Morris <rgm@gnu.org>
parents: 110786
diff changeset
666
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
667 mostlyclean:
110781
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
668 rm -f *.aux *.log *.cp *.cps *.fn *.fns *.ky *.kys \
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
669 *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
670 rm -f gnustmp.*
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
671
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
672 clean: mostlyclean
110781
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
673 rm -f $(DVI_TARGETS) $(PDF_TARGETS)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
674
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
675 distclean: clean
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
676 # rm -f Makefile
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
677
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
678 maintainer-clean: distclean
110781
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
679 for file in $(INFO_TARGETS); do \
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
680 rm -f $${file} $${file}-[1-9] $${file}-[1-9][0-9]; \
664402ada542 Misc cleanup for doc/*/Makefiles.
Glenn Morris <rgm@gnu.org>
parents: 110642
diff changeset
681 done
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
682
84327
e1fe573e52c0 Move the parts of the old man/Makefile.in that do not refer to the
Glenn Morris <rgm@gnu.org>
parents: 84282
diff changeset
683 ### Makefile ends here