]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/doc/Makefile.in
Reinstate "gdb-all.texi" as target. (Thanks, Rich, for the reminder).
[thirdparty/binutils-gdb.git] / gdb / doc / Makefile.in
1 ##Copyright (C) 1991, 1992 Free Software Foundation, Inc.
2
3 # Makefile for GDB documentation.
4 # This file is part of GDB.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 srcdir = .
21
22 prefix = /usr/local
23
24 exec_prefix = $(prefix)
25 bindir = $(exec_prefix)/bin
26 libdir = $(exec_prefix)/lib
27
28 datadir = $(prefix)/lib
29 mandir = $(prefix)/man
30 man1dir = $(mandir)/man1
31 man2dir = $(mandir)/man2
32 man3dir = $(mandir)/man3
33 man4dir = $(mandir)/man4
34 man5dir = $(mandir)/man5
35 man6dir = $(mandir)/man6
36 man7dir = $(mandir)/man7
37 man8dir = $(mandir)/man8
38 man9dir = $(mandir)/man9
39 infodir = $(prefix)/info
40 includedir = $(prefix)/include
41 docdir = $(datadir)/doc
42
43 SHELL = /bin/sh
44
45 INSTALL = install -c
46 INSTALL_PROGRAM = $(INSTALL)
47 INSTALL_DATA = $(INSTALL)
48
49 AR = ar
50 AR_FLAGS = qv
51 BISON = bison
52 RANLIB = ranlib
53
54 #### Host, target, and site specific Makefile fragments come in here.
55 ###
56 # main GDB source directory
57 gdbdir = ..
58
59 # Documentation (gdb.dvi) needs either GNU m4 or SysV m4;
60 # Berkeley/Sun don't have quite enough.
61 #M4=/usr/5bin/m4
62 M4=gm4
63
64 # where to find texinfo; GDB dist should include a recent one
65 TEXIDIR=$(srcdir)/${gdbdir}/../texinfo/fsf
66
67 # where to find makeinfo, preferably one designed for texinfo-2
68 MAKEINFO=makeinfo
69
70 # where to find texi2roff, ditto
71 TEXI2ROFF=texi2roff
72
73 # Where is the source dir for the READLINE library? Traditionally in .. or .
74 # (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
75 READLINE_DIR = $(srcdir)/${gdbdir}/../readline
76
77 # Main GDB manual's source files
78 SFILES_DOCDIR = \
79 $(srcdir)/gdb.texinfo $(srcdir)/pretex.m4 $(srcdir)/none.m4 \
80 $(srcdir)/all.m4 gdbinv-m.m4 gdbinv-s.m4 gdbVN.m4
81
82 # Which version of GDB manual? default includes everything
83 CONFIG=all
84
85 all install:
86
87 info: gdb.info gdbint.info
88 all-doc: gdb.info gdb.dvi refcard.dvi gdb-internals gdbint.dvi
89 clean-info:
90 -rm -f *.info*
91
92 install-info: info
93 for i in *.info* ; do \
94 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
95 done
96
97 STAGESTUFF = *.info* gdb-all.texi gdbVN.m4
98
99 # Copy the object files from a particular stage into a subdirectory.
100 stage1: force
101 -mkdir stage1
102 -mv $(STAGESTUFF) stage1
103
104 stage2: force
105 -mkdir stage2
106 -mv $(STAGESTUFF) stage2
107
108 stage3: force
109 -mkdir stage3
110 -mv $(STAGESTUFF) stage3
111
112 against=stage2
113
114 comparison: force
115 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
116
117 de-stage1: force
118 -(cd stage1 ; mv -f * ..)
119 -rmdir stage1
120
121 de-stage2: force
122 -(cd stage2 ; mv -f * ..)
123 -rmdir stage2
124
125 de-stage3: force
126 -(cd stage3 ; mv -f * ..)
127 -rmdir stage3
128
129 clean:
130 rm -f gdb.dvi rluser.texinfo inc-hist.texi gdb-all* gdb.info* gdbVN.m4
131 rm -f gdb-internals gdbint.?? gdbint.??? gdbint.info
132 rm -f refcard.ps refcard.dvi refcard.log *~
133
134 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
135 refcard.dvi : $(srcdir)/refcard.tex
136 TEXINPUTS=$(srcdir):.:$$TEXINPUTS tex refcard.tex; rm -f refcard.log
137 rm -f rcfonts.tex
138
139 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
140 refcard.ps : $(srcdir)/refcard.tex $(srcdir)/psrc.sed
141 sed -f $(srcdir)/psrc.sed refcard.tex >psref.tex
142 TEXINPUTS=$(srcdir):.:$$TEXINPUTS tex psref.tex
143 dvips -t landscape psref -o; mv psref.ps refcard.ps
144 rm -f psref.dvi psref.log
145
146 # GDB QUICK REFERENCE (PostScript output, common PS fonts w/long names)
147 lrefcard.ps : $(srcdir)/refcard.tex $(srcdir)/lpsrc.sed
148 sed -f $(srcdir)/lpsrc.sed refcard.tex >psref.tex
149 TEXINPUTS=$(srcdir):.:$$TEXINPUTS tex psref.tex
150 dvips -t landscape psref -o; mv psref.ps lrefcard.ps
151 rm -f psref.dvi psref.log
152
153 # "Readline" appendices. Get them here so both TeX and texi2roff can find.
154 rluser.texinfo: ${READLINE_DIR}/doc/rluser.texinfo
155 ln -s ${READLINE_DIR}/doc/rluser.texinfo . || \
156 ln ${READLINE_DIR}/doc/rluser.texinfo . || \
157 cp ${READLINE_DIR}/doc/rluser.texinfo .
158
159 inc-hist.texi: ${READLINE_DIR}/doc/inc-hist.texi
160 ln -s ${READLINE_DIR}/doc/inc-hist.texi . || \
161 ln ${READLINE_DIR}/doc/inc-hist.texi . || \
162 cp ${READLINE_DIR}/doc/inc-hist.texi .
163
164 # File to record current GDB version number (copied from main dir Makefile.in)
165 gdbVN.m4 : $(srcdir)/${gdbdir}/Makefile.in
166 echo "_define__(<_GDB_VN__>,`sed <$(srcdir)/../Makefile.in -n 's/VERSION = //p'`)" > ./gdbVN.m4
167
168 # GDB MANUAL: texinfo source, created by preprocessing w/m4
169 # If you want other configs in the makefile, add or modify instructions for
170 # building source here, then change CONFIG (that way you get info, dvi,
171 # roff targets automatically for your config).
172 # Be sure to not create a bad gdb-all.texi if ${M4} is missing or aborts...
173 # The nonsense with gdbVN.m4 is to get this to run with both Sun and GNU make.
174 # Note that we can *generate* gdbVN.m4, but since we distribute one in the
175 # source directory for the benefit of people who *don't* use this makefile,
176 # VPATH will often tell make not to bother building it, because the one
177 # in the srcdir is up to date. (if not, then make should build one here).
178
179 gdb-all.texi: ${SFILES_DOCDIR}
180 if [ ! -f ./gdbVN.m4 ]; then \
181 ln -s $(srcdir)/gdbVN.m4 . || \
182 ln $(srcdir)/gdbVN.m4 . || \
183 cp $(srcdir)/gdbVN.m4 . ; else true; fi
184 rm -f foobus.texinfo
185 ${M4} $(srcdir)/pretex.m4 $(srcdir)/none.m4 $(srcdir)/all.m4 \
186 gdbVN.m4 $(srcdir)/gdb.texinfo >foobus.texinfo
187 rm -f gdb-all.texi
188 mv foobus.texinfo ./gdb-all.texi
189
190 # GDB MANUAL: TeX dvi file
191 gdb.dvi : gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi
192 TEXINPUTS=${TEXIDIR}:.:$(srcdir):$$TEXINPUTS tex gdb-${CONFIG}.texi
193 texindex gdb-${CONFIG}.??
194 TEXINPUTS=${TEXIDIR}:.:$(srcdir):$$TEXINPUTS tex gdb-${CONFIG}.texi
195 mv gdb-${CONFIG}.dvi ./gdb.dvi
196 rm -f gdb-${CONFIG}.?? gdb-${CONFIG}.???
197
198 # GDB MANUAL: info file
199 # We're using texinfo2, and older makeinfo's may not be able to
200 # cope with all the markup. In the meantime, we distribute the info
201 # files
202 gdb.info: gdb-${CONFIG}.texi
203 $(MAKEINFO) -o ./gdb.info $(srcdir)/gdb-${CONFIG}.texi
204
205 # GDB MANUAL: roff translations
206 # Try to use a recent texi2roff. v2 was put on prep in jan91.
207 # If you want an index, see texi2roff doc for postprocessing
208 # and add -i to texi2roff invocations below.
209 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
210 # corresponding -e lines when later texi2roff's are current)
211 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
212 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
213 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
214 # + @alphaenumerate is ridiculously new, turned into @enumerate
215
216
217 # gdb manual suitable for [tn]roff -mm
218 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
219 # try leaving them in
220 # ditto special treatment of @ftable in rluser.texinfo
221 gdb.mm: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi
222 rm -f ./rluser.texinfo
223 sed -e 's/^@ftable/@table/g' \
224 -e 's/^@end ftable/@end table/g' \
225 ${READLINE_DIR}/doc/rluser.texinfo > ./rluser.texinfo
226 sed -e '/\\input texinfo/d' \
227 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
228 -e '/^@ifinfo/,/^@end ifinfo/d' \
229 -e '/^@c/d' \
230 -e 's/{.*,,/{/' \
231 -e '/@noindent/d' \
232 -e 's/@ / /g' \
233 -e 's/^@alphaenumerate/@enumerate/g' \
234 -e 's/^@end alphaenumerate/@end enumerate/g' \
235 gdb-${CONFIG}.texi | \
236 $(TEXI2ROFF) -mm | \
237 sed -e 's/---/\\(em/g' \
238 >gdb.mm
239 rm ./rluser.texinfo
240
241 # gdb manual suitable for [gtn]roff -me
242 gdb.me: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi
243 rm -f ./rluser.texinfo
244 sed -e 's/^@ftable/@table/g' \
245 -e 's/^@end ftable/@end table/g' \
246 ${READLINE_DIR}/doc/rluser.texinfo > ./rluser.texinfo
247 sed -e '/\\input texinfo/d' \
248 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
249 -e '/^@ifinfo/,/^@end ifinfo/d' \
250 -e '/^@c/d' \
251 -e 's/{.*,,/{/' \
252 -e 's/@ / /g' \
253 -e 's/^@alphaenumerate/@enumerate/g' \
254 -e 's/^@end alphaenumerate/@end enumerate/g' \
255 gdb-${CONFIG}.texi | \
256 $(TEXI2ROFF) -me | \
257 sed -e 's/---/\\(em/g' \
258 >gdb.me
259 rm ./rluser.texinfo
260
261 # gdb manual suitable for [gtn]roff -ms
262 gdb.ms: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi
263 rm -f ./rluser.texinfo
264 sed -e 's/^@ftable/@table/g' \
265 -e 's/^@end ftable/@end table/g' \
266 ${READLINE_DIR}/doc/rluser.texinfo > ./rluser.texinfo
267 sed -e '/\\input texinfo/d' \
268 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
269 -e '/^@ifinfo/,/^@end ifinfo/d' \
270 -e '/^@c/d' \
271 -e 's/{.*,,/{/' \
272 -e 's/@ / /g' \
273 -e 's/^@alphaenumerate/@enumerate/g' \
274 -e 's/^@end alphaenumerate/@end enumerate/g' \
275 gdb-${CONFIG}.texi | \
276 $(TEXI2ROFF) -ms | \
277 sed -e 's/---/\\(em/g' \
278 >gdb.ms
279 rm ./rluser.texinfo
280
281 # GDB INTERNALS MANUAL: TeX dvi file
282 gdbint.dvi : gdbint.texinfo
283 TEXINPUTS=${TEXIDIR}:.:$(srcdir):$$TEXINPUTS tex gdbint.texinfo
284 texindex gdbint.??
285 TEXINPUTS=${TEXIDIR}:.:$(srcdir):$$TEXINPUTS tex gdbint.texinfo
286 rm -f gdbint.?? gdbint.aux gdbint.cps gdbint.fns gdbint.kys \
287 gdbint.log gdbint.pgs gdbint.toc gdbint.tps gdbint.vrs
288
289 # GDB INTERNALS MANUAL: info file
290 gdb-internals: gdbint.info
291
292 gdbint.info: gdbint.texinfo
293 $(MAKEINFO) -o gdbint.info $(srcdir)/gdbint.texinfo
294
295 force:
296
297 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
298 $(SHELL) ./config.status