]> git.ipfire.org Git - thirdparty/glibc.git/blob - Makefile
Update.
[thirdparty/glibc.git] / Makefile
1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
8
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 # Library General Public License for more details.
13
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
18
19 #
20 # Master Makefile for the GNU C library
21 #
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
25
26 include Makeconfig
27
28
29 # This is the default target; it makes everything except the tests.
30 .PHONY: all
31 all: lib others
32 \f
33 ifeq ($(with-cvs),yes)
34 define autoconf-it
35 @-rm -f $@.new
36 autoconf $(ACFLAGS) $< > $@.new
37 chmod a-w,a+x $@.new
38 mv -f $@.new $@
39 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
40 endef
41 else
42 define autoconf-it
43 @-rm -f $@.new
44 autoconf $(ACFLAGS) $< > $@.new
45 chmod a-w,a+x $@.new
46 mv -f $@.new $@
47 endef
48 endif
49
50 configure: configure.in aclocal.m4; $(autoconf-it)
51 %/configure: %/configure.in aclocal.m4; $(autoconf-it)
52
53 # These are the targets that are made by making them in each subdirectory.
54 +subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
55 subdir_clean subdir_distclean subdir_realclean \
56 tests subdir_lint.out \
57 subdir_distinfo \
58 subdir_echo-headers subdir_echo-distinfo \
59 subdir_install \
60 $(addprefix install-, no-libc.a bin lib data headers others)
61 \f
62 headers := errno.h sys/errno.h bits/errno.h limits.h values.h \
63 features.h gnu-versions.h bits/libc-lock.h bits/xopen_lim.h \
64 gnu/libc-version.h
65
66 echo-headers: subdir_echo-headers
67
68 # The headers are in the include directory.
69 subdir-dirs = include
70 vpath %.h $(subdir-dirs)
71
72 # What to install.
73 install-others = $(inst_includedir)/gnu/stubs.h
74 install-bin = glibcbug
75
76 ifeq (yes,$(build-shared))
77 install-others += $(inst_includedir)/gnu/lib-names.h
78 endif
79
80 include Makerules
81
82 ifeq ($(build-programs),yes)
83 others: $(addprefix $(objpfx),$(install-bin))
84 endif
85
86 # Install from subdirectories too.
87 install: subdir_install
88
89 # Make sure that the dynamic linker is installed before libc.
90 $(inst_slibdir)/libc-$(version).so: elf/ldso_install
91
92 .PHONY: elf/ldso_install
93 elf/ldso_install:
94 $(MAKE) -C $(@D) $(@F)
95
96 # Create links for shared libraries using the `ldconfig' program is possible.
97 # Ignore the error if we cannot update /etc/ld.so.cache.
98 ifeq (no,$(cross-compiling))
99 ifeq (yes,$(build-shared))
100 install:
101 -test ! -x $(common-objpfx)elf/ldconfig || \
102 $(common-objpfx)elf/ldconfig -d $(inst_slibdir) $(inst_libdir)
103 ifneq (no,$(PERL))
104 ifeq (/usr,$(prefix))
105 ifeq (,$(install_root))
106 CC="$(CC)" $(PERL) scripts/test-installation.pl $(common-objpfx)
107 endif
108 endif
109 endif
110 endif
111 endif
112
113 # Build subdirectory lib objects.
114 lib-noranlib: subdir_lib
115
116 ifeq (yes,$(build-shared))
117 # Build the shared object from the PIC object library.
118 lib: $(common-objpfx)libc.so
119 endif
120 \f
121 # Makerules creates a file `stubs' in each subdirectory, which
122 # contains `#define __stub_FUNCTION' for each function defined in that
123 # directory which is a stub.
124 # Here we paste all of these together into <gnu/stubs.h>.
125
126 subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs)
127
128 # Since stubs.h is never needed when building the library, we simplify the
129 # hairy installation process by producing it in place only as the last part
130 # of the top-level `make install'. It depends on subdir_install, which
131 # iterates over all the subdirs; subdir_install in each subdir depends on
132 # the subdir's stubs file. Having more direct dependencies would result in
133 # extra iterations over the list for subdirs and many recursive makes.
134 $(inst_includedir)/gnu/stubs.h: subdir_install
135 $(make-target-directory)
136 @rm -f $(objpfx)stubs.h
137 (echo '/* This file is automatically generated.';\
138 echo ' It defines a symbol `__stub_FUNCTION'\'' for each function';\
139 echo ' in the C library which is a stub, meaning it will fail';\
140 echo ' every time called, usually setting errno to ENOSYS. */';\
141 sort $(subdir-stubs)) > $(objpfx)stubs.h
142 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
143 then echo 'stubs.h unchanged'; \
144 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
145 rm -f $(objpfx)stubs.h
146 \f
147 ifeq (yes,$(build-shared))
148
149 $(inst_includedir)/gnu/lib-names.h: $(common-objpfx)gnu/lib-names.h $(+force)
150 $(make-target-directory)
151 if test -r $@ && cmp -s $< $@; \
152 then echo 'gnu/lib-names.h unchanged'; \
153 else $(INSTALL_DATA) $< $@; fi
154 endif
155 \f
156 # The `glibcbug' script contains the version number and it shall be rebuild
157 # whenever this changes or the `glibcbug.in' file.
158 $(objpfx)glibcbug: $(common-objpfx)config.status glibcbug.in
159 cd $(<D) && CONFIG_FILES=$(@F) CONFIG_HEADERS= $(SHELL) $(<F)
160 \f
161 # This makes the Info or DVI file of the documentation from the Texinfo source.
162 .PHONY: info dvi
163 info dvi:
164 $(MAKE) $(PARALLELMFLAGS) -C manual $@
165 \f
166 # This makes all the subdirectory targets.
167
168 # For each target, make it depend on DIR/target for each subdirectory DIR.
169 $(+subdir_targets): %: $(addsuffix /%,$(subdirs))
170
171 # Compute a list of all those targets.
172 all-subdirs-targets := $(foreach dir,$(subdirs),\
173 $(addprefix $(dir)/,$(+subdir_targets)))
174
175 # The action for each of those is to cd into the directory and make the
176 # target there.
177 $(all-subdirs-targets):
178 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
179
180 .PHONY: $(+subdir_targets) $(all-subdirs-targets)
181 \f
182 # Targets to clean things up to various degrees.
183
184 .PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean
185
186 # Subroutines of all cleaning targets.
187 parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
188 -rm -f $(foreach o,$(object-suffixes-for-libc),\
189 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
190 $(addprefix $(objpfx),$(install-lib))
191 parent-clean: parent-mostlyclean common-clean
192
193 postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
194 $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules) \
195 $(objpfx)soversions.mk
196
197 clean: parent-clean
198 # This is done this way rather than having `subdir_clean' be a
199 # dependency of this target so that libc.a will be removed before the
200 # subdirectories are dealt with and so they won't try to remove object
201 # files from it when it's going to be removed anyway.
202 @$(MAKE) subdir_clean no_deps=t
203 mostlyclean: parent-mostlyclean
204 @$(MAKE) subdir_mostlyclean no_deps=t
205 -rm -f $(postclean)
206
207 # The realclean target is just like distclean for the parent, but we want
208 # the subdirs to know the difference in case they care.
209 realclean distclean: parent-clean
210 # This is done this way rather than having `subdir_distclean' be a
211 # dependency of this target so that libc.a will be removed before the
212 # subdirectories are dealt with and so they won't try to remove object
213 # files from it when it's going to be removed anyway.
214 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
215 sysdep-subdirs="$(sysdep-subdirs)"
216 -rm -f $(postclean)
217
218 # Subroutine of distclean and realclean.
219 distclean-1: subdir_$(distclean-1)
220 -rm -f $(config-generated)
221 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
222 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
223 -rm -f $(addprefix $(objpfx),glibcbug)
224 ifdef objdir
225 -rm -f $(objpfx)Makefile
226 endif
227 -rm -f $(sysdep-$(distclean-1))
228 \f
229 .PHONY: echo_subdirs
230 echo_subdirs:;@echo '$(subdirs)'
231
232 .PHONY: echo-distinfo parent_echo-distinfo
233 echo-distinfo: parent_echo-distinfo subdir_echo-distinfo
234 parent_echo-distinfo:
235 @echo $(addprefix +header+,$(headers)) \
236 $(addprefix +nodist+,$(generated))
237
238 \f
239 # Make the distribution tarfile.
240
241 distribute := README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS \
242 PROJECTS COPYING.LIB COPYING ChangeLog ChangeLog.[0-9] \
243 Makefile Makeconfig Makerules Rules Make-dist MakeTAGS \
244 extra-lib.mk o-iterator.mk libc.map configure \
245 configure.in aclocal.m4 config.h.in config.make.in \
246 config-name.in Makefile.in sysdep.h set-hooks.h \
247 libc-symbols.h version.h shlib-versions rpm/Makefile \
248 rpm/template rpm/rpmrc glibcbug.in abi-tags stub-tag.h \
249 test-skeleton.c include/des.h \
250 $(addprefix scripts/, \
251 rellns-sh config.sub config.guess \
252 mkinstalldirs move-if-change install-sh \
253 test-installation.pl gen-FAQ.pl)
254
255 distribute := $(strip $(distribute))
256 generated := $(generated) stubs.h
257
258 README: README.template version.h ; # Make-dist should update README.
259
260 define format-me
261 @rm -f $@
262 makeinfo --no-validate --no-warn --no-headers $< -o $@
263 -chmod a-w $@
264 endef
265 INSTALL: manual/install.texi; $(format-me)
266 NOTES: manual/creature.texi; $(format-me)
267 manual/dir-add.texi manual/dir-add.info: FORCE
268 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
269 FAQ: scripts/gen-FAQ.pl FAQ.in
270 $(PERL) $^ > $@.new && rm -f $@ && mv $@.new $@ && chmod a-w $@
271 ifeq ($(with-cvs),yes)
272 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: $(PERL) $^' $@
273 endif
274 FORCE:
275
276 rpm/%: subdir_distinfo
277 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
278
279 iconvdata/%:
280 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
281
282 # This is a special goal for people making binary distributions. Normally
283 # everybody uses the DES based crypt library but for the distribution we
284 # need the only-MD5 based one as well.
285 md5-crypt/libmd5crypt:
286 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
287
288 # glibc 2.0 contains some header files which aren't used with glibc 2.1
289 # anymore.
290 # These rules should remove those headers
291 ifeq (,$(install_root))
292 ifeq ($(old-glibc-headers),yes)
293 install: remove-old-headers
294 endif
295 endif
296
297 headers2_0 := __math.h bytesex.h confname.h direntry.h elfclass.h \
298 errnos.h fcntlbits.h huge_val.h ioctl-types.h \
299 ioctls.h iovec.h jmp_buf.h libc-lock.h local_lim.h \
300 mathcalls.h mpool.h nan.h ndbm.h posix1_lim.h \
301 posix2_lim.h posix_opt.h resourcebits.h schedbits.h \
302 selectbits.h semaphorebits.h sigaction.h sigcontext.h \
303 signum.h sigset.h sockaddrcom.h socketbits.h stab.def \
304 statbuf.h statfsbuf.h stdio-lock.h stdio_lim.h \
305 syscall-list.h termbits.h timebits.h ustatbits.h \
306 utmpbits.h utsnamelen.h waitflags.h waitstatus.h \
307 xopen_lim.h gnu/types.h sys/ipc_buf.h \
308 sys/kernel_termios.h sys/msq_buf.h sys/sem_buf.h \
309 sys/shm_buf.h sys/socketcall.h
310
311 .PHONY: remove-old-headers
312 remove-old-headers:
313 rm -f $(addprefix $(inst_includedir)/, $(headers2_0))