1 # Makefile for the GNU C Library manual.
3 # Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Library General Public License
8 # as published by the Free Software Foundation; either version 2 of
9 # the License, or (at your option) any later version.
11 # The GNU C Library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Library General Public License for more details.
16 # You should have received a copy of the GNU Library General Public
17 # License along with the GNU C Library; see the file COPYING.LIB. If
18 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
19 # Cambridge, MA 02139, USA.
22 export subdir
:= $(subdir
)
29 # Get glibc's configuration info.
30 ifneq (,$(wildcard ..
/Makeconfig
))
34 # Set chapters and chapters-incl.
36 chapters
: libc.texinfo
40 chapters-incl
: $(chapters
)
42 chapters-incl
:= $(filter-out summary.texi
,$(chapters-incl
))
46 (echo
'$(@F) :=' \\ ;\
47 awk
'$$1 == "@include" { print $$2 " \\" }' $^
) > $@.new
51 libc.
dvi libc.
info: $(chapters
) summary.texi
$(chapters-incl
)
54 # Generate the summary from the Texinfo source files for each chapter.
55 summary.texi
: stamp-summary
;
56 stamp-summary
: summary.awk
$(chapters
) $(chapters-incl
)
58 |
sort -df
+1 -2 | tr
'\014' '\012' > summary-tmp
59 .
/move-if-change summary-tmp summary.texi
60 # touch is broken on our machines. Sigh.
63 # Generate Texinfo files from the C source for the example programs.
64 %.c.texi
: examples
/%.c
65 sed
-e
's,[{}],@&,g' \
66 -e
's,/\*\(@.*\)\*/,\1,g' \
67 -e
's,/\* *,/* @r{,g' -e
's, *\*/,} */,' \
68 -e
's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/'\
73 minimal-dist
= summary.awk move-if-change libc.texinfo
$(chapters
) \
74 $(patsubst %.c.texi
,examples
/%.c
, \
75 $(filter-out summary.texi
,$(chapters-incl
)))
76 doc-only-dist
= Makefile COPYING.LIB mkinstalldirs
77 distribute
= $(minimal-dist
) \
78 $(patsubst examples
/%.c
,%.c.texi
,$(filter examples
/%.c
, \
80 libc.?? libc.??s texinfo.
tex summary.texi \
81 stamp-summary chapters chapters-incl
82 export distribute
:= $(distribute
)
84 tar-it
= tar chovf
$@
$^
86 manual.
tar: $(doc-only-dist
) $(minimal-dist
) ; $(tar-it
)
87 mandist.
tar: $(doc-only-dist
) $(distribute
) ; $(tar-it
)
89 edition
:= $(shell sed
-n
's/^@set EDITION \([0-9][0-9.]*\)[^0-9.]*.*$$/\1/p' \
92 glibc-doc-
$(edition
).
tar: $(doc-only-dist
) $(distribute
)
93 @
rm -f glibc-doc-
$(edition
)
94 ln
-s . glibc-doc-
$(edition
)
95 tar chovf
$@
$(addprefix glibc-doc-
$(edition
)/,$^
)
96 rm -f glibc-doc-
$(edition
)
99 compress
-c
$< > $@.new
102 gzip
-9 -c
$< > $@.new
105 uuencode
$< < $< > $@.new
108 # The parent makefile sometimes invokes us with targets `subdir_REAL-TARGET'.
111 .PHONY
: mostlyclean distclean realclean clean
113 -rm -f libc.
dvi libc.
info*
116 indices
= cp fn pg tp vr ky
118 -rm -f chapters chapters-incl summary.texi stamp-summary
*.c.texi
119 -rm -f
$(foreach index
,$(indices
),libc.
$(index
) libc.
$(index
)s
)
120 -rm -f libc.log libc.aux libc.toc
122 .PHONY
: install subdir_install
installdirs install-data
123 install-data subdir_install
: install
124 install: $(infodir)/libc.
info
125 # Catchall implicit rule for other installation targets from the parent.
128 $(infodir)/libc.
info: libc.
info installdirs
129 for file in
$<*; do \
130 name
=`basename $$file`; \
131 $(INSTALL_DATA
) $$file \
132 `echo $@ | sed "s,$<\$$,$$name,"`; \
135 installdirs: $(firstword $(wildcard mkinstalldirs ..
/mkinstalldirs
))
136 $(dir $<)$(notdir $<) $(infodir)
139 dist: # glibc-doc-$(edition).tar.gz
141 ifneq (,$(wildcard ..
/Make-dist
))
143 $(MAKE
) -f
$< $(Make-dist-args
)
149 TAGS
: $(minimal-dist
)
152 # These are targets that each glibc subdirectory is expected to understand.
153 # ../Rules defines them for code subdirectories; for us, they are no-ops.
154 glibc-targets
:= subdir_lib objects objs others tests subdir_lint.out \
155 subdir_echo-headers subdir_echo-distinfo stubs
156 .PHONY
: $(glibc-targets
)
159 stubs
: $(common-objpfx
)stub-manual
160 $(common-objpfx
)stub-manual
:
163 # The top-level glibc Makefile expects subdir_install to update the stubs file.
164 subdir_install
: stubs
167 # Get rid of these variables if they came from the parent.