./
[platform/upstream/binutils.git] / binutils / doc / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2
3 AUTOMAKE_OPTIONS = cygnus
4
5 # What version of the manual you want; "all" includes everything
6 CONFIG=all
7
8 # Options to extract the man page from as.texinfo
9 MANCONF = -Dman
10
11 TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl
12
13 POD2MAN = pod2man --center="GNU Development Tools" \
14          --release="binutils-$(VERSION)" --section=1
15
16 # List of man pages generated from binutils.texi
17 man_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
33 info_TEXINFOS = binutils.texi
34 binutils_TEXINFOS = config.texi
35 binutils_TEXI = $(srcdir)/binutils.texi
36
37 config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI)
38         rm -f config.texi
39         eval `grep '^ *VERSION=' $<`; echo "@set VERSION $$VERSION" > $@
40         echo "@set UPDATED `date "+%B %Y"`" >> config.texi
41
42 # Man page generation from texinfo
43 addr2line.1:    $(binutils_TEXI)
44         touch $@
45         -$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
46         -($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
47                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
48         rm -f addr2line.pod
49
50 ar.1:   $(binutils_TEXI)
51         touch $@
52         -$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
53         -($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
54                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
55         rm -f ar.pod
56
57 dlltool.1:      $(binutils_TEXI)
58         touch $@
59         -$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
60         -($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
61                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
62         rm -f dlltool.pod
63
64 nlmconv.1:      $(binutils_TEXI)
65         touch $@
66         -$(TEXI2POD) $(MANCONF) -Dnlmconv < $(binutils_TEXI) > nlmconv.pod
67         -($(POD2MAN) nlmconv.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
68                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
69         rm -f nlmconv.pod
70
71 nm.1:   $(binutils_TEXI)
72         touch $@
73         -$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
74         -($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
75                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
76         rm -f nm.pod
77
78 objcopy.1:      $(binutils_TEXI)
79         touch $@
80         -$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
81         -($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
82                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
83         rm -f objcopy.pod
84
85 objdump.1:      $(binutils_TEXI)
86         touch $@
87         -$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
88         -($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
89                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
90         rm -f objdump.pod
91
92 ranlib.1:       $(binutils_TEXI)
93         touch $@
94         -$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
95         -($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
96                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
97         rm -f ranlib.pod
98
99 readelf.1:      $(binutils_TEXI)
100         touch $@
101         -$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
102         -($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
103                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
104         rm -f readelf.pod
105
106 size.1: $(binutils_TEXI)
107         touch $@
108         -$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
109         -($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
110                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
111         rm -f size.pod
112
113 strings.1:      $(binutils_TEXI)
114         touch $@
115         -$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
116         -($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
117                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
118         rm -f strings.pod
119
120 strip.1:        $(binutils_TEXI)
121         touch $@
122         -$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
123         -($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
124                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
125         rm -f strip.pod
126
127 windres.1:      $(binutils_TEXI)
128         touch $@
129         -$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
130         -($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
131                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
132         rm -f windres.pod
133
134 cxxfilt.man:    $(binutils_TEXI)
135         touch $@
136         -$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
137         -($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
138                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
139         rm -f $(DEMANGLER_NAME).pod
140
141 MAINTAINERCLEANFILES = config.texi
142 MOSTLYCLEANFILES     = $(DEMANGLER_NAME).1
143
144 $(DEMANGLER_NAME).1: cxxfilt.man Makefile
145         if test -f cxxfilt.man; then \
146           man=cxxfilt.man; \
147         else \
148           man=$(srcdir)/cxxfilt.man; \
149         fi; \
150         sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
151             -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
152                 > $(DEMANGLER_NAME).1
153
154 # We want install to imply install-info as per GNU standards, despite the
155 # cygnus option.
156 install-data-local: install-info
157
158 # Maintenance
159
160 # We need it for the taz target in ../../Makefile.in.
161 info-local: $(MANS)