annotate doc/misc/Makefile.in @ 86378:5d15069189ff

Fixups for nxml per Romain Francoise email.
author Mark A. Hershberger <mah@everybody.org>
date Fri, 23 Nov 2007 19:38:49 +0000
parents 1c1df1662d58
children 791f39a2f656
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,
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
4 # 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
5
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
6 # This file is part of GNU Emacs.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
8 # GNU Emacs is free software; you can redistribute it and/or modify
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
9 # it under the terms of the GNU General Public License as published by
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
10 # the Free Software Foundation; either version 3, or (at your option)
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
11 # any later version.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
12
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
13 # 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
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
16 # GNU General Public License for more details.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
17
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
18 # You should have received a copy of the GNU General Public License
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
19 # along with GNU Emacs; see the file COPYING. If not, write to
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
20 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
21 # Boston, MA 02110-1301, USA.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
22
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 top_srcdir=@top_srcdir@
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
29
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
30 # 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
31 VPATH=@srcdir@
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
32
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
33 ## 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
34 ## 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
35 infodir=../../info
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
36
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
37 # The makeinfo program is part of the Texinfo distribution.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
38 # 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
39 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
40
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
41 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
42 $(infodir)/ada-mode \
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
43 $(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
44 $(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
45 $(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
46 $(infodir)/cl \
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)/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
48 $(infodir)/ebrowse \
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)/ediff \
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)/emacs-mime \
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
51 $(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
52 $(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
53 $(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
54 $(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
55 $(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
56 $(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
57 $(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
58 $(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
59 $(infodir)/info \
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)/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
61 $(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
62 $(infodir)/newsticker \
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
63 $(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
64 $(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
65 $(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
66 $(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
67 $(infodir)/rcirc \
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
68 $(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
69 $(infodir)/reftex \
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)/sc \
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)/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
72 $(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
73 $(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
74 $(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
75 $(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
76 $(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
77 $(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
78 $(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
79 $(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
80 $(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
81
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
82 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
83 ada-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
84 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
85 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
86 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
87 cl.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
88 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
89 ebrowse.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
90 ediff.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
91 emacs-mime.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
92 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
93 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
94 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
95 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
96 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
97 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
98 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
99 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
100 info.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
101 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
102 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
103 newsticker.dvi \
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
104 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
105 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
106 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
107 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
108 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
109 reftex.dvi \
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
110 remember.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
111 sc.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 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
113 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
114 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
115 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
116 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
117 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
118 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
119 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
120 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
121 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
122
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
123
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 TEXI2DVI = texi2dvi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
125
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
126 # The following rule does not work with all versions of `make'.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
127 .SUFFIXES: .texi .dvi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
128 .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
129 $(TEXI2DVI) $<
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
130
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
131 ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
132
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
133
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
134 info: $(infodir) $(INFO_TARGETS)
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
135
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
136 $(infodir):
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
137 mkdir $@
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
138
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
139 dvi: $(DVI_TARGETS)
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
140
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
141
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
142 # Note that all the Info targets build the Info files
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
143 # in srcdir. There is no provision for Info files
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
144 # to exist in the build directory.
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
145 # 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
146
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
147 ## "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
148 ada-mode : $(infodir)/ada-mode
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
149 $(infodir)/ada-mode: 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
150 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
151 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
152 $(ENVADD) $(TEXI2DVI) ${srcdir}/ada-mode.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
153
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
154 autotype : $(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
155 $(infodir)/autotype: 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
156 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
157 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
158 $(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
159
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
160 calc : $(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
161 $(infodir)/calc: 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
162 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
163 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
164 $(ENVADD) $(TEXI2DVI) ${srcdir}/calc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
165
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
166 ccmode : $(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
167 $(infodir)/ccmode: cc-mode.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
168 cd $(srcdir); $(MAKEINFO) cc-mode.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
169 cc-mode.dvi: cc-mode.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
170 $(ENVADD) $(TEXI2DVI) ${srcdir}/cc-mode.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
171
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
172 cl : $(infodir)/cl
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
173 $(infodir)/cl: 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
174 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
175 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
176 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
177
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
178 dired-x : $(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
179 $(infodir)/dired-x: 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
180 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
181 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
182 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
183
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
184 ebrowse : $(infodir)/ebrowse
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
185 $(infodir)/ebrowse: 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
186 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
187 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
188 $(ENVADD) $(TEXI2DVI) ${srcdir}/ebrowse.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
189
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
190 ediff : $(infodir)/ediff
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
191 $(infodir)/ediff: 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
192 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
193 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
194 $(ENVADD) $(TEXI2DVI) ${srcdir}/ediff.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
195
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
196 emacs-mime : $(infodir)/emacs-mime
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
197 $(infodir)/emacs-mime: 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
198 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
199 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
200 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
201
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
202 erc : $(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
203 $(infodir)/erc: 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
204 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
205 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
206 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
207
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
208 eshell : $(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
209 $(infodir)/eshell: eshell.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
210 cd $(srcdir); $(MAKEINFO) eshell.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
211 eshell.dvi: eshell.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
212 $(ENVADD) $(TEXI2DVI) ${srcdir}/eshell.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
213
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
214 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
215 $(infodir)/eudc: 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
216 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
217 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
218 $(ENVADD) $(TEXI2DVI) ${srcdir}/eudc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
219
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
220 efaq : $(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
221 $(infodir)/efaq: 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
222 cd $(srcdir); $(MAKEINFO) 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
223 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
224 $(ENVADD) $(TEXI2DVI) ${srcdir}/faq.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
225
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
226 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
227 $(infodir)/flymake: 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
228 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
229 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
230 $(ENVADD) $(TEXI2DVI) ${srcdir}/flymake.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
231
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
232 forms : $(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
233 $(infodir)/forms: forms.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
234 cd $(srcdir); $(MAKEINFO) forms.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
235 forms.dvi: forms.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
236 $(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
237
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
238 # 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
239 gnus : $(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
240 $(infodir)/gnus: gnus.texi gnus-faq.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
241 cd $(srcdir); $(MAKEINFO) gnus.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
242 gnus.dvi: gnus.texi gnus-faq.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
243 sed -e '/@iflatex/,/@end iflatex/d' ${srcdir}/gnus.texi > gnustmp.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
244 $(ENVADD) $(TEXI2DVI) gnustmp.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
245 cp gnustmp.dvi $*.dvi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
246 rm gnustmp.*
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
247
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
248 # 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
249 # 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
250 idlwave : $(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
251 $(infodir)/idlwave: 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
252 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
253 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
254 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
255
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 # 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
257 # 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
258 # 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
259 ###info : $(infodir)/info # circular!
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
260 $(infodir)/info: 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
261 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
262 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
263 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
264
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 message : $(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
266 $(infodir)/message: message.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
267 cd $(srcdir); $(MAKEINFO) message.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
268 message.dvi: message.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
269 $(ENVADD) $(TEXI2DVI) ${srcdir}/message.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
270
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
271 mh-e : $(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
272 $(infodir)/mh-e: 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
273 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
274 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
275 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
276
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
277 newsticker : $(infodir)/newsticker
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
278 $(infodir)/newsticker: 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
279 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
280 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
281 $(ENVADD) $(TEXI2DVI) ${srcdir}/newsticker.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
282
86378
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
283 nxml-mode : $(infodir)/nxml-mode
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
284 $(infodir)/nxml-mode: nxml-mode.texi
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
285 cd $(srcdir); $(MAKEINFO) nxml-mode.texi
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
286 nxml-mode.dvi: nxml-mode.texi
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
287 $(ENVADD) $(TEXI2DVI) ${srcdir}/nxml-mode.texi
5d15069189ff Fixups for nxml per Romain Francoise email.
Mark A. Hershberger <mah@everybody.org>
parents: 85792
diff changeset
288
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
289 org : $(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
290 $(infodir)/org: 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
291 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
292 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
293 $(ENVADD) $(TEXI2DVI) ${srcdir}/org.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
294
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 pcl-cvs : $(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
296 $(infodir)/pcl-cvs: 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
297 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
298 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
299 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
300
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
301 pgg : $(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
302 $(infodir)/pgg: pgg.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
303 cd $(srcdir); $(MAKEINFO) pgg.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
304 pgg.dvi: pgg.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
305 $(ENVADD) $(TEXI2DVI) ${srcdir}/pgg.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
306
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
307 rcirc : $(infodir)/rcirc
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
308 $(infodir)/rcirc: 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
309 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
310 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
311 $(ENVADD) $(TEXI2DVI) ${srcdir}/rcirc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
312
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 reftex : $(infodir)/reftex
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 $(infodir)/reftex: reftex.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
315 cd $(srcdir); $(MAKEINFO) reftex.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
316 reftex.dvi: reftex.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
317 $(ENVADD) $(TEXI2DVI) ${srcdir}/reftex.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
318
85792
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
319 remember : $(infodir)/remember
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
320 $(infodir)/remember: remember.texi
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
321 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
322 remember.dvi: remember.texi
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
323 $(ENVADD) $(TEXI2DVI) ${srcdir}/remember.texi
1c1df1662d58 doc/misc/Makefile.in: Add targets to build Remember Manual
Michael Olson <mwolson@gnu.org>
parents: 84327
diff changeset
324
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
325 sc : $(infodir)/sc
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
326 $(infodir)/sc: sc.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
327 cd $(srcdir); $(MAKEINFO) sc.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
328 sc.dvi: sc.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
329 $(ENVADD) $(TEXI2DVI) ${srcdir}/sc.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
330
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
331 ses : $(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
332 $(infodir)/ses: 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
333 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
334 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
335 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
336
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 sieve : $(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
338 $(infodir)/sieve: 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
339 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
340 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
341 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
342
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
343 smtpmail : $(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
344 $(infodir)/smtpmail: 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
345 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
346 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
347 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
348
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
349 speedbar : $(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
350 $(infodir)/speedbar: 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
351 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
352 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
353 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
354
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 tramp : $(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
356 $(infodir)/tramp: 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
357 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
358 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
359 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
360
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
361 url : $(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
362 $(infodir)/url: 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
363 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
364 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
365 $(ENVADD) $(TEXI2DVI) ${srcdir}/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
366
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
367 vip : $(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
368 $(infodir)/vip: vip.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
369 cd $(srcdir); $(MAKEINFO) vip.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
370 vip.dvi: vip.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
371 $(ENVADD) $(TEXI2DVI) ${srcdir}/vip.texi
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 viper : $(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
374 $(infodir)/viper: viper.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
375 cd $(srcdir); $(MAKEINFO) viper.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
376 viper.dvi: viper.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
377 $(ENVADD) $(TEXI2DVI) ${srcdir}/viper.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
378
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
379 widget : $(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
380 $(infodir)/widget: widget.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
381 cd $(srcdir); $(MAKEINFO) widget.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
382 widget.dvi: widget.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
383 $(ENVADD) $(TEXI2DVI) ${srcdir}/widget.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
384
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
385 woman : $(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
386 $(infodir)/woman: woman.texi
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
387 cd $(srcdir); $(MAKEINFO) woman.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
388 woman.dvi: woman.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
389 $(ENVADD) $(TEXI2DVI) ${srcdir}/woman.texi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
390
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
391
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
392 mostlyclean:
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
393 rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp \
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 *.tps *.core gnustmp.*
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 rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
396
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
397 clean: mostlyclean
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
398 rm -f *.dvi
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
399
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
400 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
401 # rm -f Makefile
84282
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
402
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
403 maintainer-clean: distclean
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
404 for file in $(INFO_TARGETS); do rm -f $${file}*; done
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
405
2f384360ad4b Move here from ../../man
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
406
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
407 ### Makefile ends here