1 # Copyright (C) 1992-1999, 2000, 2001 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 # Makefile for the GNU C Library manual.
22 export subdir
:= $(subdir
)
25 INSTALL_INFO
= install-info
27 .PHONY
: all dvi pdf
info html
32 # Get glibc's configuration info.
33 ifneq (,$(wildcard ..
/Makeconfig
))
41 TEXI2PDF
= texi2dvi --pdf
43 ifneq ($(strip $(MAKEINFO
)),:)
45 info: libc.
info dir-add.
info
50 move-if-change
= .
/move-if-change
52 mkinstalldirs
= $(..
)scripts
/mkinstalldirs
54 chapters
= $(addsuffix .texi
, \
55 intro errno memory ctype string charset locale \
56 message search pattern io stdio llio filesys \
57 pipe socket terminal syslog math arith time \
58 resource setjmp signal startup process job nss \
59 users sysinfo conf crypt debug
)
60 add-chapters
= $(wildcard $(foreach d
, $(add-ons
), ..
/$d/$d.texi
))
61 appendices
= lang.texi header.texi
install.texi maint.texi contrib.texi \
65 texis
: texis.awk
$(chapters
) $(add-chapters
) $(appendices
) lesser.texi fdl.texi
69 nonexamples
= $(filter-out $(add-chapters
) %.c.texi
, $(texis
))
70 examples
= $(filter-out $(foreach d
, $(add-ons
), ..
/$d/%.c.texi
), \
71 $(filter %.c.texi
, $(texis
)))
73 # Kludge: implicit rule so Make knows the one command does it all.
74 chapters.
% top-menu.
%: libc-texinfo.sh
$(texis
) Makefile
75 AWK
=$(AWK
) $(SHELL
) $< '$(chapters)' '$(add-chapters)' '$(appendices)'
77 libc.
dvi libc.pdf libc.
info: chapters.texi top-menu.texi libm-err.texi
78 libc.
dvi libc.pdf
: texinfo.
tex
81 libc
/index.html
: chapters.texi top-menu.texi libm-err.texi
82 $(MAKEINFO
) --html libc.texinfo
84 # Generate the summary from the Texinfo source files for each chapter.
85 summary.texi
: stamp-summary
;
86 stamp-summary
: summary.awk
$(filter-out summary.texi
, $(texis
))
87 $(AWK
) -f
$^ |
sort -t
'\f' -df
+0 -1 | tr
'\014' '\012' > summary-tmp
88 $(move-if-change
) summary-tmp summary.texi
91 # Generate a file which can be added to the `dir' content to provide direct
92 # access to the documentation of the function, variables, and other
94 dir-add.
info: xtract-typefun.awk
$(texis
)
95 (echo
"INFO-DIR-SECTION GNU C library functions"; \
96 echo
"START-INFO-DIR-ENTRY"; \
97 $(AWK
) -f
$^ |
sort; \
98 echo
"END-INFO-DIR-ENTRY") > $@.new
101 # The table with the math errors is generated.
102 libm-err.texi
: stamp-libm-err
103 stamp-libm-err
: libm-err-tab.pl
$(wildcard $(foreach dir,$(sysdirs
),\
104 $(dir)/libm-test-ulps
))
106 $(PERL
) $< $$pwd/..
> libm-err-tmp
107 $(move-if-change
) libm-err-tmp libm-err.texi
110 # Generate Texinfo files from the C source for the example programs.
111 %.c.texi
: examples
/%.c
112 sed
-e
's,[{}],@&,g' \
113 -e
's,/\*\(@.*\)\*/,\1,g' \
114 -e
's,/\* *,/* @r{,g' -e
's, *\*/,} */,' \
115 -e
's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
120 LANGUAGE
=C LC_ALL
=C
$(MAKEINFO
) $<
129 minimal-dist
= summary.awk texis.awk tsort.awk libc-texinfo.sh libc.texinfo \
130 libm-err.texi stamp-libm-err \
131 $(filter-out summary.texi
, $(nonexamples
)) \
132 $(patsubst %.c.texi
,examples
/%.c
, $(examples
))
134 doc-only-dist
= Makefile COPYING.LIB
135 distribute
= $(minimal-dist
) $(examples
) stdio-fp.c \
136 libc.
info* libc.?? libc.??s texinfo.
tex \
137 xtract-typefun.awk dir-add.
info dir libm-err-tab.pl
138 export distribute
:= $(distribute
)
140 tar-it
= tar chovf
$@
$^
142 manual.
tar: $(doc-only-dist
) $(minimal-dist
) ; $(tar-it
)
143 mandist.
tar: $(doc-only-dist
) $(distribute
) ; $(tar-it
)
145 edition
:= $(shell sed
-n
's/^@set EDITION \([0-9][0-9.]*\)[^0-9.]*.*$$/\1/p' \
148 glibc-doc-
$(edition
).
tar: $(doc-only-dist
) $(distribute
)
149 @
rm -f glibc-doc-
$(edition
)
150 ln
-s . glibc-doc-
$(edition
)
151 tar chovf
$@
$(addprefix glibc-doc-
$(edition
)/,$^
)
152 rm -f glibc-doc-
$(edition
)
155 compress
-c
$< > $@.new
158 gzip
-9 -c
$< > $@.new
161 uuencode
$< < $< > $@.new
164 .PHONY
: mostlyclean distclean realclean clean
166 -rm -f libc.
dvi libc.pdf libc.tmp libc.
info* dir-add.
info
167 -rm -f
$(objpfx
)stubs
$(objpfx
)distinfo
168 -rm -f
$(foreach o
,$(object-suffixes-for-libc
),$(objpfx
)stamp
$o)
171 indices
= cp fn pg tp vr ky
173 -rm -f texis summary.texi stamp-summary
*.c.texi
174 -rm -f
$(foreach index
,$(indices
),libc.
$(index
) libc.
$(index
)s
)
175 -rm -f libc.log libc.aux libc.toc dir-add.texinfo
176 -rm -f top-menu.texi chapters.texi
178 .PHONY
: install subdir_install
installdirs install-data
179 install-data subdir_install
: install
180 ifneq ($(strip $(MAKEINFO
)),:)
181 # There are two variants of install-info out there. The GNU version
182 # knows about the INFO-DIR-SECTION tag, the Debian version doesn't.
183 ifneq ($(OLD_DEBIAN_INSTALL_INFO
),yes
)
184 install: $(inst_infodir
)/libc.
info dir-add.
info
185 @if
$(SHELL
) -c
'$(INSTALL_INFO) --version' >/dev
/null
2>&1; then \
186 test -f
$(inst_infodir
)/dir ||
$(INSTALL_DATA
) dir $(inst_infodir
);\
187 $(INSTALL_INFO
) --info-dir
=$(inst_infodir
) $(inst_infodir
)/libc.
info;\
188 $(INSTALL_INFO
) --info-dir
=$(inst_infodir
) dir-add.
info;\
191 install: $(inst_infodir
)/libc.
info dir-add.
info
192 @if
$(SHELL
) -c
'$(INSTALL_INFO) --version' >/dev
/null
2>&1; then \
193 test -f
$(inst_infodir
)/dir ||
$(INSTALL_DATA
) dir $(inst_infodir
);\
194 $(INSTALL_INFO
) --info-dir
=$(inst_infodir
) \
195 --section
'^GNU Libraries:' 'GNU Libraries:' \
196 $(inst_infodir
)/libc.
info;\
197 $(INSTALL_INFO
) --info-dir
=$(inst_infodir
) \
198 --section
'^GNU C Library functions:' 'GNU C Library functions:' \
203 # Catchall implicit rule for other installation targets from the parent.
206 $(inst_infodir
)/libc.
info: libc.
info installdirs
207 for file in
$<*; do \
208 $(INSTALL_DATA
) $$file $(@D
)/$$file; \
212 $(mkinstalldirs
) $(inst_infodir
)
215 dist: # glibc-doc-$(edition).tar.gz
217 ifneq (,$(wildcard ..
/Make-dist
))
219 $(MAKE
) -f
$< $(Make-dist-args
)
225 TAGS
: $(minimal-dist
)
228 # The parent makefile sometimes invokes us with targets `subdir_REAL-TARGET'.
230 # For targets we don't define, do nothing.
233 # These are targets that each glibc subdirectory is expected to understand.
234 # ../Rules defines them for code subdirectories; for us, they are no-ops.
235 # None of these should be `subdir_TARGET'; those targets are transformed
236 # by the implicit rule above into `TARGET' deps.
237 glibc-targets
:= lib objects objs others tests lint.out \
238 echo-headers echo-distinfo
239 .PHONY
: $(glibc-targets
)
242 # Create stamp files if they don't exist, so the parent makefile's rules for
243 # updating the library archives are happy with us, and never think we have
244 # changed the library.
245 lib
: $(foreach o
,$(object-suffixes-for-libc
),$(objpfx
)stamp
$o)
248 stubs
: $(objpfx
)stubs
250 $(objpfx
)stubs ..
/po
/manual.pot
$(objpfx
)stamp
%:
251 $(make-target-directory
)
254 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
255 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
256 define make-target-directory
257 $(addprefix $(mkinstalldirs
) ,\
258 $(filter-out $(wildcard $(@D
:%/=%)),$(@D
:%/=%)))
261 # The top-level glibc Makefile expects subdir_install to update the stubs file.
262 subdir_install
: stubs
264 # Get rid of these variables if they came from the parent.