generate single html manual page by default
[deliverable/binutils-gdb.git] / binutils / doc / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2 #
3 # Copyright (C) 2012-2021 Free Software Foundation, Inc.
4 #
5 # This file is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; see the file COPYING3. If not see
17 # <http://www.gnu.org/licenses/>.
18 #
19
20 AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
21
22 # What version of the manual you want; "all" includes everything
23 CONFIG=all
24
25 # Options to extract the man page from as.texinfo
26 MANCONF = -Dman
27
28 TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
29
30 POD2MAN = pod2man --center="GNU Development Tools" \
31 --release="binutils-$(VERSION)" --section=1
32
33 # List of man pages generated from binutils.texi
34 man_MANS = \
35 addr2line.1 \
36 ar.1 \
37 dlltool.1 \
38 nm.1 \
39 objcopy.1 \
40 objdump.1 \
41 ranlib.1 \
42 readelf.1 \
43 size.1 \
44 strings.1 \
45 strip.1 \
46 elfedit.1 \
47 windres.1 \
48 windmc.1 \
49 $(DEMANGLER_NAME).1
50
51 info_TEXINFOS = binutils.texi
52 binutils_TEXI = $(srcdir)/binutils.texi
53
54 AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
55 -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
56 --no-split
57 TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
58 -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
59
60 # Man page generation from texinfo
61 addr2line.1: $(binutils_TEXI)
62 touch $@
63 -$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
64 -($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
65 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
66 rm -f addr2line.pod
67
68 ar.1: $(binutils_TEXI)
69 touch $@
70 -$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
71 -($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
72 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
73 rm -f ar.pod
74
75 dlltool.1: $(binutils_TEXI)
76 touch $@
77 -$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
78 -($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
79 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
80 rm -f dlltool.pod
81
82 nm.1: $(binutils_TEXI)
83 touch $@
84 -$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
85 -($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
86 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
87 rm -f nm.pod
88
89 objcopy.1: $(binutils_TEXI)
90 touch $@
91 -$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
92 -($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
93 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
94 rm -f objcopy.pod
95
96 objdump.1: $(binutils_TEXI)
97 touch $@
98 -$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
99 -($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
100 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
101 rm -f objdump.pod
102
103 ranlib.1: $(binutils_TEXI)
104 touch $@
105 -$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
106 -($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
107 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
108 rm -f ranlib.pod
109
110 readelf.1: $(binutils_TEXI)
111 touch $@
112 -$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
113 -($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
114 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
115 rm -f readelf.pod
116
117 size.1: $(binutils_TEXI)
118 touch $@
119 -$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
120 -($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
121 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
122 rm -f size.pod
123
124 strings.1: $(binutils_TEXI)
125 touch $@
126 -$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
127 -($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
128 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
129 rm -f strings.pod
130
131 strip.1: $(binutils_TEXI)
132 touch $@
133 -$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
134 -($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
135 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
136 rm -f strip.pod
137
138 elfedit.1: $(binutils_TEXI)
139 touch $@
140 -$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
141 -($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
142 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
143 rm -f elfedit.pod
144
145 windres.1: $(binutils_TEXI)
146 touch $@
147 -$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
148 -($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
149 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
150 rm -f windres.pod
151
152 windmc.1: $(binutils_TEXI)
153 touch $@
154 -$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
155 -($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
156 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
157 rm -f windmc.pod
158
159 cxxfilt.man: $(binutils_TEXI)
160 touch $@
161 -$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
162 -($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
163 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
164 rm -f $(DEMANGLER_NAME).pod
165
166 MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
167
168 $(DEMANGLER_NAME).1: cxxfilt.man Makefile
169 if test -f cxxfilt.man; then \
170 man=cxxfilt.man; \
171 else \
172 man=$(srcdir)/cxxfilt.man; \
173 fi; \
174 sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
175 -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
176 > $(DEMANGLER_NAME).1
177
178 # Maintenance
179
180 # We need it for the taz target in ../../Makefile.in.
181 info-local: $(MANS)
This page took 0.080083 seconds and 4 git commands to generate.