]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/doc/Makefile.am
ChangeLog rotation
[thirdparty/binutils-gdb.git] / binutils / doc / Makefile.am
CommitLineData
c45021f2 1## Process this file with automake to generate Makefile.in
5bf135a7 2#
2571583a 3# Copyright (C) 2012-2017 Free Software Foundation, Inc.
5bf135a7
NC
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#
c45021f2
NC
19
20AUTOMAKE_OPTIONS = cygnus
21
22# What version of the manual you want; "all" includes everything
23CONFIG=all
24
25# Options to extract the man page from as.texinfo
26MANCONF = -Dman
27
38fc1cb1 28TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
c45021f2 29
c7c55b78
NC
30POD2MAN = pod2man --center="GNU Development Tools" \
31 --release="binutils-$(VERSION)" --section=1
c45021f2
NC
32
33# List of man pages generated from binutils.texi
34man_MANS = \
35 addr2line.1 \
36 ar.1 \
37 dlltool.1 \
38 nlmconv.1 \
39 nm.1 \
40 objcopy.1 \
41 objdump.1 \
42 ranlib.1 \
43 readelf.1 \
44 size.1 \
45 strings.1 \
46 strip.1 \
30fd33bb 47 elfedit.1 \
c45021f2 48 windres.1 \
692ed3e7 49 windmc.1 \
c45021f2
NC
50 $(DEMANGLER_NAME).1
51
52info_TEXINFOS = binutils.texi
42ecbf5e 53binutils_TEXI = $(srcdir)/binutils.texi
c45021f2 54
c428fa83 55AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
9975e4c4 56 -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
c428fa83 57TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
9975e4c4 58 -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
c45021f2 59
c45021f2 60# Man page generation from texinfo
f33e8c5b 61addr2line.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 62 touch $@
75aa6618 63 -$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
4258bf4d 64 -($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 65 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 66 rm -f addr2line.pod
c45021f2 67
f33e8c5b 68ar.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 69 touch $@
75aa6618 70 -$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
4258bf4d 71 -($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 72 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 73 rm -f ar.pod
c45021f2 74
f33e8c5b 75dlltool.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 76 touch $@
75aa6618 77 -$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
4258bf4d 78 -($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 79 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 80 rm -f dlltool.pod
c45021f2 81
f33e8c5b 82nlmconv.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 83 touch $@
75aa6618 84 -$(TEXI2POD) $(MANCONF) -Dnlmconv < $(binutils_TEXI) > nlmconv.pod
4258bf4d 85 -($(POD2MAN) nlmconv.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 86 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 87 rm -f nlmconv.pod
c45021f2 88
f33e8c5b 89nm.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 90 touch $@
75aa6618 91 -$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
4258bf4d 92 -($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 93 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 94 rm -f nm.pod
c45021f2 95
f33e8c5b 96objcopy.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 97 touch $@
75aa6618 98 -$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
4258bf4d 99 -($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 100 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 101 rm -f objcopy.pod
c45021f2 102
f33e8c5b 103objdump.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 104 touch $@
75aa6618 105 -$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
4258bf4d 106 -($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 107 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 108 rm -f objdump.pod
c45021f2 109
f33e8c5b 110ranlib.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 111 touch $@
75aa6618 112 -$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
4258bf4d 113 -($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 114 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 115 rm -f ranlib.pod
c45021f2 116
f33e8c5b 117readelf.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 118 touch $@
75aa6618 119 -$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
4258bf4d 120 -($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 121 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 122 rm -f readelf.pod
c45021f2 123
f33e8c5b 124size.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 125 touch $@
75aa6618 126 -$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
4258bf4d 127 -($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 128 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 129 rm -f size.pod
c45021f2 130
f33e8c5b 131strings.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 132 touch $@
75aa6618 133 -$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
4258bf4d 134 -($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 135 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 136 rm -f strings.pod
c45021f2 137
f33e8c5b 138strip.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 139 touch $@
75aa6618 140 -$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
4258bf4d 141 -($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 142 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 143 rm -f strip.pod
c45021f2 144
30fd33bb
L
145elfedit.1: $(binutils_TEXI) $(binutils_TEXINFOS)
146 touch $@
147 -$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
148 -($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
149 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
150 rm -f elfedit.pod
151
f33e8c5b 152windres.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 153 touch $@
75aa6618 154 -$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
4258bf4d 155 -($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 156 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 157 rm -f windres.pod
c45021f2 158
692ed3e7
NC
159windmc.1: $(binutils_TEXI) $(binutils_TEXINFOS)
160 touch $@
161 -$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
162 -($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
163 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
164 rm -f windmc.pod
165
f33e8c5b 166cxxfilt.man: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 167 touch $@
75aa6618 168 -$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
4258bf4d 169 -($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 170 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 171 rm -f $(DEMANGLER_NAME).pod
c45021f2 172
c45021f2
NC
173MOSTLYCLEANFILES = $(DEMANGLER_NAME).1
174
175$(DEMANGLER_NAME).1: cxxfilt.man Makefile
38131e67
L
176 if test -f cxxfilt.man; then \
177 man=cxxfilt.man; \
178 else \
179 man=$(srcdir)/cxxfilt.man; \
180 fi; \
4258bf4d 181 sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
38131e67 182 -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
c45021f2
NC
183 > $(DEMANGLER_NAME).1
184
7562a296
HPN
185# We want install to imply install-info as per GNU standards, despite the
186# cygnus option.
42ecbf5e 187install-data-local: install-info
7562a296 188
c428fa83 189MAINTAINERCLEANFILES = binutils.info
d5fbea21
DJ
190
191# Automake 1.9 will only build info files in the objdir if they are
192# mentioned in DISTCLEANFILES. It doesn't have to be unconditional,
193# though, so we use a bogus condition.
194if GENINSRC_NEVER
195DISTCLEANFILES = binutils.info
196endif
197
c45021f2
NC
198# Maintenance
199
200# We need it for the taz target in ../../Makefile.in.
42ecbf5e 201info-local: $(MANS)