merge from gcc
[deliverable/binutils-gdb.git] / binutils / doc / Makefile.am
CommitLineData
c45021f2
NC
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5# What version of the manual you want; "all" includes everything
6CONFIG=all
7
8# Options to extract the man page from as.texinfo
9MANCONF = -Dman
10
38fc1cb1 11TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
c45021f2 12
c7c55b78
NC
13POD2MAN = pod2man --center="GNU Development Tools" \
14 --release="binutils-$(VERSION)" --section=1
c45021f2
NC
15
16# List of man pages generated from binutils.texi
17man_MANS = \
18 addr2line.1 \
19 ar.1 \
20 dlltool.1 \
21 nlmconv.1 \
22 nm.1 \
23 objcopy.1 \
24 objdump.1 \
25 ranlib.1 \
26 readelf.1 \
27 size.1 \
28 strings.1 \
29 strip.1 \
30 windres.1 \
31 $(DEMANGLER_NAME).1
32
33info_TEXINFOS = binutils.texi
42ecbf5e
DJ
34binutils_TEXINFOS = config.texi
35binutils_TEXI = $(srcdir)/binutils.texi
c45021f2 36
38fc1cb1
DJ
37AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty"
38
42ecbf5e 39config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI)
c45021f2 40 rm -f config.texi
970c3dbc
DJ
41 eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \
42 echo "@set VERSION $$VERSION" > $@
36607f99 43 echo "@set UPDATED `date "+%B %Y"`" >> config.texi
c45021f2 44
c45021f2 45# Man page generation from texinfo
f33e8c5b 46addr2line.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 47 touch $@
75aa6618 48 -$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
4258bf4d 49 -($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 50 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 51 rm -f addr2line.pod
c45021f2 52
f33e8c5b 53ar.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 54 touch $@
75aa6618 55 -$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
4258bf4d 56 -($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 57 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 58 rm -f ar.pod
c45021f2 59
f33e8c5b 60dlltool.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 61 touch $@
75aa6618 62 -$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
4258bf4d 63 -($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 64 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 65 rm -f dlltool.pod
c45021f2 66
f33e8c5b 67nlmconv.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 68 touch $@
75aa6618 69 -$(TEXI2POD) $(MANCONF) -Dnlmconv < $(binutils_TEXI) > nlmconv.pod
4258bf4d 70 -($(POD2MAN) nlmconv.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 71 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 72 rm -f nlmconv.pod
c45021f2 73
f33e8c5b 74nm.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 75 touch $@
75aa6618 76 -$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
4258bf4d 77 -($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 78 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 79 rm -f nm.pod
c45021f2 80
f33e8c5b 81objcopy.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 82 touch $@
75aa6618 83 -$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
4258bf4d 84 -($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 85 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 86 rm -f objcopy.pod
c45021f2 87
f33e8c5b 88objdump.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 89 touch $@
75aa6618 90 -$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
4258bf4d 91 -($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 92 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 93 rm -f objdump.pod
c45021f2 94
f33e8c5b 95ranlib.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 96 touch $@
75aa6618 97 -$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
4258bf4d 98 -($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 99 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 100 rm -f ranlib.pod
c45021f2 101
f33e8c5b 102readelf.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 103 touch $@
75aa6618 104 -$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
4258bf4d 105 -($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 106 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 107 rm -f readelf.pod
c45021f2 108
f33e8c5b 109size.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 110 touch $@
75aa6618 111 -$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
4258bf4d 112 -($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 113 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 114 rm -f size.pod
c45021f2 115
f33e8c5b 116strings.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 117 touch $@
75aa6618 118 -$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
4258bf4d 119 -($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 120 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 121 rm -f strings.pod
c45021f2 122
f33e8c5b 123strip.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 124 touch $@
75aa6618 125 -$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
4258bf4d 126 -($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 127 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 128 rm -f strip.pod
c45021f2 129
f33e8c5b 130windres.1: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 131 touch $@
75aa6618 132 -$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
4258bf4d 133 -($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 134 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 135 rm -f windres.pod
c45021f2 136
f33e8c5b 137cxxfilt.man: $(binutils_TEXI) $(binutils_TEXINFOS)
c45021f2 138 touch $@
75aa6618 139 -$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
4258bf4d 140 -($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
c45021f2 141 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
4258bf4d 142 rm -f $(DEMANGLER_NAME).pod
c45021f2
NC
143
144MAINTAINERCLEANFILES = config.texi
c45021f2
NC
145MOSTLYCLEANFILES = $(DEMANGLER_NAME).1
146
147$(DEMANGLER_NAME).1: cxxfilt.man Makefile
38131e67
L
148 if test -f cxxfilt.man; then \
149 man=cxxfilt.man; \
150 else \
151 man=$(srcdir)/cxxfilt.man; \
152 fi; \
4258bf4d 153 sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
38131e67 154 -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
c45021f2
NC
155 > $(DEMANGLER_NAME).1
156
7562a296
HPN
157# We want install to imply install-info as per GNU standards, despite the
158# cygnus option.
42ecbf5e 159install-data-local: install-info
7562a296 160
108a6f8e
CD
161html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
162
163install-html: install-html-am
164
165install-html-am: $(HTMLS)
166 @$(NORMAL_INSTALL)
167 test -z "$(htmldir)" || $(mkdir_p) "$(DESTDIR)$(htmldir)"
168 @list='$(HTMLS)'; for p in $$list; do \
169 if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
170 f=$(html__strip_dir) \
171 if test -d "$$d$$p"; then \
172 echo " $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \
173 $(mkdir_p) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
174 echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
175 $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
176 else \
177 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
178 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
179 fi; \
180 done
181
c45021f2
NC
182# Maintenance
183
184# We need it for the taz target in ../../Makefile.in.
42ecbf5e 185info-local: $(MANS)
This page took 0.215584 seconds and 4 git commands to generate.