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.
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.
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.
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.
20 # Common rules for making the GNU C library. This file is included
21 # by the top-level Makefile and by all subdirectory makefiles
25 This makefile requires GNU Make.
28 REQUIRED_MAKE_VERSION = 3.74
29 REAL_MAKE_VERSION = $(firstword $(MAKE_VERSION))
31 ifneq ($(REQUIRED_MAKE_VERSION), \
32 $(firstword $(sort $(REAL_MAKE_VERSION) $(REQUIRED_MAKE_VERSION))))
33 Wrong GNU Make version. See above for the version needed.
41 # If `sources' was defined by the parent makefile, undefine it so
42 # we will later get it from wildcard search in this directory.
43 ifneq "$(findstring env,$(origin sources))" ""
48 PATH := this definition should take precedence over $(oPATH)
49 ifeq ($(PATH),$(oPATH))
50 You must not use the -e flag when building the GNU C library.
55 ifndef +included-Makeconfig
56 include $(..)Makeconfig
59 # `configure' writes a definition of `config-sysdirs' in `config.make'.
60 sysdirs = $(strip $(full-config-sysdirs))
62 +sysdir_pfx = $(common-objpfx)
64 export sysdirs := $(sysdirs)
66 +sysdep_dirs := $(full-config-sysdirs)
68 +sysdep_dirs := $(objdir) $(+sysdep_dirs)
71 # Add -I switches to get the right sysdep directories.
72 # `+includes' in Makeconfig references $(+sysdep-includes).
73 +sysdep-includes := $(addprefix -I,$(+sysdep_dirs))
75 # This variable is used in ``include $(o-iterator)'' after defining
76 # $(o-iterator-doit) to produce some desired rule using $o for the object
77 # suffix, and setting $(object-suffixes-left) to $(object-suffixes); a copy
78 # is produced for each object suffix in use.
79 o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
81 # Include any system-specific makefiles.
83 # This is here so things in sysdep Makefiles can easily depend on foo.h as
84 # appropriate and not worry about where foo.h comes from, which may be
85 # system dependent and not known by that Makefile.
86 vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
87 $(+sysdep_dirs) $(..)))
89 # The same is true for RPC source files.
90 vpath %.x $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
91 $(+sysdep_dirs) $(..)))
93 # Some sysdep makefiles use this to distinguish being included here from
94 # being included individually by a subdir makefile (hurd/Makefile needs this).
97 -include $(+sysdir_pfx)sysd-Makefile
98 ifndef avoid-generated
99 ifneq ($(sysd-Makefile-sysdirs),$(config-sysdirs))
100 sysd-Makefile-force = FORCE
103 $(+sysdir_pfx)sysd-Makefile: $(+sysdir_pfx)config.make $(..)Makerules \
104 $(sysd-Makefile-force)
106 (echo 'sysd-Makefile-sysdirs := $(config-sysdirs)'; \
107 for dir in $(config-sysdirs); do \
108 file=$$dir/Makefile; \
113 if [ -f $$rel$$file ]; then \
115 /*) echo include "$$file" ;; \
116 *) echo include "\$$(..)$$file" ;; \
120 echo 'sysd-Makefile-done=t') > $@T
124 ifndef sysd-Makefile-done
125 # Don't do deps until this exists, because it might change the sources list.
130 # Reorder before-compile so that mach things come first, and hurd things
131 # second, before all else. The mach and hurd subdirectories have many
132 # generated header files which the much of rest of the library depends on,
133 # so it is best to build them first (and mach before hurd, at that).
134 before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
136 $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
139 # Remove existing files from `before-compile'. Things are added there when
140 # they must exist for dependency generation to work right, but once they
141 # exist there is no further need for every single file to depend on them,
142 # and those gratuitous dependencies result in many gratuitous
144 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
146 # Don't let any before-compile file be an intermediate and get removed.
151 # Generate an ordered list of implicit rules which find the source files in
152 # each sysdep directory. The old method was to use vpath to search all the
153 # sysdep directories. However, that had the problem that a .S file in a
154 # later directory would be chosen over a .c file in an earlier directory,
155 # which does not preserve the desired sysdeps ordering behavior.
157 # When making the list of .d files to include, we can't know which ones
158 # have source in .s files, and thus do not in fact need a .d file.
159 # So we must define rules to make .d files for .s files.
160 define make-dummy-dep
161 $(addprefix ln $(common-objpfx)dummy.d ,$(filter-out $(wildcard $@),$@))
163 $(common-objpfx)dummy.d:
164 echo '# .s files cannot contain includes, so they need no deps.' > $@
166 # It matters that this set of rules, for compiling from sources in
167 # the current directory (the $srcdir/$subdir) come before the
168 # generated sysdep rules in included from sysd-rules below. When
169 # compiling in the source tree, generated sources go into the current
170 # directory, and those should be chosen before any sources in sysdeps.
171 define o-iterator-doit
172 $(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
174 object-suffixes-left := $(object-suffixes-for-libc)
175 include $(o-iterator)
176 $(objpfx)%.d: %.S $(before-compile); $(+make-deps)
178 define o-iterator-doit
179 $(objpfx)%$o: %.s $(before-compile); $$(compile-command.s)
181 object-suffixes-left := $(object-suffixes-for-libc)
182 include $(o-iterator)
183 $(objpfx)%.d: %.s $(common-objpfx)dummy.d; $(make-dummy-dep)
185 define o-iterator-doit
186 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
188 object-suffixes-left := $(object-suffixes-for-libc)
189 include $(o-iterator)
190 $(objpfx)%.d: %.c $(before-compile); $(+make-deps)
192 # Omit the objpfx rules when building in the source tree, because
193 # objpfx is empty and so these rules just override the ones above.
195 # Define first rules to find the source files in $(objpfx).
196 # Generated source files will end up there.
197 define o-iterator-doit
198 $(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
200 object-suffixes-left := $(object-suffixes-for-libc)
201 include $(o-iterator)
202 $(objpfx)%.d: $(objpfx)%.S $(before-compile); $(+make-deps)
204 define o-iterator-doit
205 $(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s)
207 object-suffixes-left := $(object-suffixes-for-libc)
208 include $(o-iterator)
209 $(objpfx)%.d: $(objpfx)%.s $(common-objpfx)dummy.d; $(make-dummy-dep)
211 define o-iterator-doit
212 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
214 object-suffixes-left := $(object-suffixes-for-libc)
215 include $(o-iterator)
216 $(objpfx)%.d: $(objpfx)%.c $(before-compile); $(+make-deps)
219 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
220 # patterns matching sysdep directories whose assembly source files should
222 ifdef inhibit-sysdep-asm
223 define open-check-inhibit-asm
224 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) : ;; *)
226 close-check-inhibit-asm = ;; esac ;
229 # Don't include sysd-rules until sysd-Makefile is already there and has been
230 # included. It might define inhibit-sysdep-asm, which would affect the
231 # contents of sysd-rules.
232 ifdef sysd-Makefile-done
233 -include $(+sysdir_pfx)sysd-rules
234 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
235 # The value of $(+sysdep_dirs) the sysd-rules was computed for
236 # differs from the one we are using now. So force a rebuild of sysd-rules.
237 sysd-rules-force = FORCE
241 $(+sysdir_pfx)sysd-rules: $(+sysdir_pfx)config.make $(..)Makerules \
242 $(wildcard $(foreach dir,$(sysdirs),\
246 (echo 'sysd-rules-sysdirs := $(config-sysdirs)'; \
247 for sysdir in $(config-sysdirs); do \
249 /*) dir=$$sysdir ;; \
250 *) dir="\$$(..)$$sysdir" ;; \
252 for o in $(all-object-suffixes); do \
253 $(open-check-inhibit-asm) \
254 echo "\$$(objpfx)%$$o: $$dir/%.S \$$(before-compile); \
255 \$$(compile-command.S)"; \
256 echo "\$$(objpfx)%$$o: $$dir/%.s \$$(before-compile); \
257 \$$(compile-command.s)"; \
258 $(close-check-inhibit-asm) \
259 echo "\$$(objpfx)%$$o: $$dir/%.c \$$(before-compile); \
260 \$$(compile-command.c)"; \
262 $(open-check-inhibit-asm) \
263 echo "\$$(objpfx)%.d: $$dir/%.s \$$(common-objpfx)dummy.d; \
264 \$$(make-dummy-dep)"; \
265 echo "\$$(objpfx)%.d: $$dir/%.S \$$(before-compile); \
267 $(close-check-inhibit-asm) \
268 echo "\$$(objpfx)%.d: $$dir/%.c \$$(before-compile); \
271 echo 'sysd-rules-done = t') > $@T
274 ifndef sysd-rules-done
275 # Don't do deps until this exists, because it provides rules to make the deps.
280 ifndef compile-command.S
281 compile-command.S = $(compile.S) $(OUTPUT_OPTION)
283 ifndef compile-command.s
284 compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION)
286 ifndef compile-command.c
287 compile-command.c = $(compile.c) $(OUTPUT_OPTION)
290 # GCC can grok options after the file name, and it looks nicer that way.
291 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
293 $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
295 $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
296 COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
298 # We need this for the output to go in the right place. It will default to
299 # empty if make was configured to work with a cc that can't grok -c and -o
300 # together. You can't compile the C library with such a compiler.
301 OUTPUT_OPTION = -o $@
303 S-CPPFLAGS = $(asm-CPPFLAGS)
305 $(make-target-directory)
307 $(+mkdep) $< $(CFLAGS) $(CPPFLAGS) $($(<:$*.%=%)-CPPFLAGS) | \
309 -e 's,$(subst .,\.,$*)\.o,$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
310 $(sed-remove-objpfx) > $(@:.d=.T)
314 # Continuation lines here are dangerous because they introduce spaces!
315 define sed-remove-objpfx
316 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
317 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
321 # Shared library building.
323 ifeq (yes,$(build-shared))
325 # Reference map file only when versioning is selected and a map file name
327 ifeq ($(versioning),yes)
328 map-file = $(firstword $(wildcard \
329 $($(@F:.so=-map)) $(@F:.so=.map) $(..)$(@F:.so=.map)))
330 load-map-file = $(map-file:%=-Wl,--version-script=%)
333 # Pattern rule to build a shared object from an archive of PIC objects.
334 # This must come after the installation rules so Make doesn't try to
335 # build shared libraries in place from the installed *_pic.a files.
336 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
337 # on other shared objects.
338 lib%.so: lib%_pic.a $(+preinit) $(+postinit)
342 interp-obj = $(common-objpfx)elf/interp.os
343 $(common-objpfx)libc.so: $(interp-obj)
344 $(patsubst %,$(objpfx)%.so,$(extra-libs)): $(interp-obj)
348 $(LINK.o) -shared -o $@ $(sysdep-LDFLAGS) $(config-LDFLAGS) \
349 -B$(csu-objpfx) $(load-map-file) \
350 -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
351 $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
352 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link) \
353 -Wl,--whole-archive \
354 $(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
355 $(no-whole-archive) $(LDLIBS-$(@F:lib%.so=%).so)
358 ifndef libc.so-version
359 # Undefine this because it can't work when we libc.so is unversioned.
360 static-only-routines =
363 elide-routines.oS += $(filter-out $(static-only-routines),\
364 $(routines) $(aux) $(sysdep_routines))
365 elide-routines.os += $(static-only-routines)
367 # If we have versioned code we don't need the old versions in any of the
369 elide-routines.o += $(shared-only-routines)
370 elide-routines.op += $(shared-only-routines)
371 elide-routines.og += $(shared-only-routines)
372 elide-routines.ob += $(shared-only-routines)
374 # Don't try to use -lc when making libc.so itself.
375 # Also omits crti.o and crtn.o, which we do not want
376 # since we define our own `.init' section specially.
377 LDFLAGS-c.so = -nostdlib -nostartfiles
378 # But we still want to link libc.so against $(gnulib).
379 LDLIBS-c.so = $(gnulib)
380 # Give libc.so an entry point and make it directly runnable itself.
381 LDFLAGS-c.so += -e __libc_main
382 # Pre-link the objects of libc_pic.a so that we can locally resolve
383 # COMMON symbols before we link against ld.so. This is because ld.so
384 # contains some of libc_pic.a already, which will prevent the COMMONs
385 # from being allocated in libc.so, which introduces evil dependencies
386 # between libc.so and ld.so, which can make it impossible to upgrade.
387 $(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
388 $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
389 -Wl,-d -Wl,--whole-archive $^
390 # Use our own special initializer and finalizer files for libc.so.
391 $(common-objpfx)libc.so: $(elfobjdir)/soinit.os \
392 $(common-objpfx)libc_pic.os \
393 $(elfobjdir)/sofini.os $(elfobjdir)/ld.so \
396 common-generated += libc.so libc_pic.os
397 ifdef libc.so-version
398 $(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
400 common-generated += libc.so$(libc.so-version)
404 # Figure out the source filenames in this directory.
406 override sources := $(addsuffix .c,$(filter-out $(elided-routines),\
409 sysdep_routines := $(sysdep_routines)
411 headers := $(headers) $(sysdep_headers)
413 # This is the list of all object files, gotten by
414 # replacing every ".c" in `sources' with a ".o".
415 override objects := $(addprefix $(objpfx),$(sources:.c=.o))
418 # The makefile may define $(extra-libs) with `libfoo libbar'
419 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
421 # extra-lib.mk is included once for each extra lib to define rules
422 # to build it, and to add its objects to the various variables.
423 # During its evaluation, $(lib) is set to the name of the library.
424 extra-libs-left := $(extra-libs)
425 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
428 +depfiles := $(sources:.c=.d) \
429 $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
430 $(addsuffix .d,$(tests) $(test-srcs) $(tests-static))
431 ifeq ($(build-programs),yes)
432 +depfiles += $(addsuffix .d,$(others) $(sysdep-others))
434 +depfiles := $(addprefix $(objpfx),\
435 $(filter-out $(addsuffix .d,$(omit-deps)),\
440 -include $(+depfiles)
444 # Maximize efficiency by minimizing the number of rules.
445 .SUFFIXES: # Clear the suffix list. We don't use suffix rules.
446 # Don't define any builtin rules.
447 MAKEFLAGS := $(MAKEFLAGS)r
449 # Generic rule for making directories.
451 # mkdir isn't smart enough to strip a trailing /.
454 # Make sure that object files are not removed
455 # when they are intermediates between sources and library members.
456 .PRECIOUS: $(addprefix $(objpfx)%,$(all-object-suffixes))
458 # Make sure that the parent library archive is never removed.
459 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
461 # Use the verbose option of ar and tar when not running silently.
462 ifeq "$(findstring s,$(MAKEFLAGS))" "" # if not -s
468 ARFLAGS := r$(verbose)
469 CREATE_ARFLAGS := cru$(verbose)
471 # This makes all the object files in the parent library archive.
473 .PHONY: lib lib-noranlib
474 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
475 lib-noranlib: libobjs
477 # For object-suffix $o, the list of objects with that suffix.
478 # Makefiles can define `elide-routines.so = foo' to leave foo.so out.
479 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
480 $(elide-routines$o)),\
482 others: $(addprefix $(objpfx),$(install-lib))
486 # Create the stamp$o files to keep the parent makefile happy.
487 subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
488 $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
489 $(make-target-directory)
493 # Define explicit rules to update each $(objpfx)stamp.SUFFIX
494 # timestamp file; these rules (one explicit rule is generated for each
495 # object suffix) write a list of objects to update in the stamp file.
496 # The parent will then actually add them all to the archive in the
497 # archive rule, below.
498 define o-iterator-doit
499 $(objpfx)stamp$o: $(o-objects); $$(do-stamp)
502 echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
505 object-suffixes-left := $(object-suffixes-for-libc)
506 include $(o-iterator)
510 # Now define explicit rules to build the library archives; these depend
511 # on the stamp files built above.
512 define o-iterator-doit
513 $(common-objpfx)$(patsubst %,$(libtype$o),c): \
514 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
517 cd $(common-objdir) && \
518 $(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
521 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
522 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
524 $(subdirs-stamps): subdir_lib;
526 object-suffixes-left = $(object-suffixes-for-libc)
527 include $(o-iterator)
530 # This makes all the object files.
531 .PHONY: objects objs libobjs extra-objs
532 objects objs: libobjs extra-objs
533 libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
534 extra-objs: $(addprefix $(objpfx),$(extra-objs))
536 # Canned sequence for building an extra library archive.
537 define build-extra-lib
538 $(patsubst %/,cd % &&,$(objpfx)) \
539 $(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
540 $(patsubst $(objpfx)%,%,$^)
546 .PHONY: force-install
549 # $(install-lib) are installed from the object directory into $(libdir);
550 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
551 # unless they also appear in $(non-lib.a). $(install-data) are installed
552 # as they are into $(datadir). $(headers) are installed as they are in
553 # $(includedir). $(install-bin) and $(install-sbin) are installed from the
554 # object directory into $(bindir) and $(sbindir), respectively.
555 # $(install-others) are absolute path names of files to install; rules to
556 # install them are defined elsewhere.
558 # The simple library name to install libc.a under.
559 # This could be defined by a sysdep Makefile.
565 $(make-target-directory)
566 $(INSTALL_DATA) $< $@
569 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
570 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
571 define make-target-directory
572 $(addprefix $(..)./scripts/mkinstalldirs ,\
573 $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
576 # Any directory (parent or subdir) should install libc.a; this way
577 # "make install" in a subdir is guaranteed to install everything it changes.
578 installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
579 $(inst_libdir)/$(patsubst %,$(libtype$o),\
580 $(libprefix)$(libc-name)))
581 install: $(installed-libcs)
582 $(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
583 $(make-target-directory)
584 $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
585 # Running ranlib after installing makes the __.SYMDEF time stamp up to
586 # date, which avoids messages from some linkers.
589 define do-install-program
590 $(make-target-directory)
591 $(INSTALL_PROGRAM) $< $@.new
595 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
596 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
597 ifeq (yes,$(build-shared))
599 install-lib-nosubdir: $(install-lib.so:%=$(inst_libdir)/%)
601 # Find which .so's have versions.
602 versioned := $(strip $(foreach so,$(install-lib.so),\
603 $(patsubst %,$(so),$($(so)-version))))
605 # Install all the unversioned shared libraries.
606 $(addprefix $(inst_slibdir)/, $(filter-out $(versioned),$(install-lib.so))): \
607 $(inst_slibdir)/%.so: $(objpfx)%.so $(+force); $(do-install-program)
609 ifneq ($(findstring -s,$(LN_S)),)
612 $(SHELL) $(..)scripts/rellns-sh $< $@.new
616 # If we have no symbolic links don't bother with rellns-sh.
624 # XXX The following will have to be changed when `ldconfig' is available.
625 ifneq (yes,$(cross-compiling))
626 ifeq (yes,$(has-ldconfig))
627 define make-shlib-link
632 ifndef make-shlib-link
633 define make-shlib-link
638 ifdef libc.so-version
639 # For a library specified to be version N, install three files:
640 # libc.so -> libc.so.N (e.g. libc.so.6)
641 # libc.so.6 -> libc-VERSION.so (e.g. libc-1.10.so)
643 $(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
646 $(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
647 $(do-install-program)
648 install: $(inst_slibdir)/libc.so$(libc.so-version)
651 # What we install as libc.so for programs to link against is in fact a
652 # link script. It contains references for the various libraries we need.
653 # The libc.so object is not complete since some functions are only defined
654 # in libc_nonshared.a.
655 install: $(inst_libdir)/libc.so
656 $(inst_libdir)/libc.so: $(common-objpfx)libc.so$(libc.so-version) \
657 $(inst_libdir)/$(patsubst %,$(libtype.oS),\
658 $(libprefix)$(libc-name)) \
660 (echo '/* GNU ld script';\
661 echo ' Use the shared library, but some functions are only in';\
662 echo ' the static library, so try that secondarily. */';\
663 echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
664 '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
672 install: $(inst_slibdir)/libc.so
673 $(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
674 $(do-install-program)
677 ifneq (,$(versioned))
678 # Produce three sets of rules as above for all the smaller versioned libraries.
680 define o-iterator-doit
681 $(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
683 object-suffixes-left := $(versioned)
684 include $(o-iterator)
686 # Make symlinks in the build directory, because the versioned names might
687 # be referenced by a DT_NEEDED in another library.
688 define o-iterator-doit
689 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
691 object-suffixes-left := $(versioned)
692 include $(o-iterator)
694 generated += $(foreach o,$(versioned),$o$($o-version))
696 ifeq (,$($(subdir)-version))
697 define o-iterator-doit
698 $(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
702 object-suffixes-left := $(versioned)
703 include $(o-iterator)
705 define o-iterator-doit
706 $(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
707 $$(do-install-program)
709 object-suffixes-left := $(versioned)
710 include $(o-iterator)
712 define o-iterator-doit
713 $(inst_slibdir)/$o$($o-version): \
714 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
717 object-suffixes-left := $(versioned)
718 include $(o-iterator)
720 define o-iterator-doit
721 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
722 $$(do-install-program)
724 object-suffixes-left := $(versioned)
725 include $(o-iterator)
730 $(do-install-program)
731 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
732 $(filter-out %.so,$@))
735 so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
736 $(foreach v,$(so-versions),\
737 $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so \
740 $(foreach v,$(so-versions),\
741 $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
746 $(addprefix $(inst_bindir)/,$(install-bin)): \
747 $(inst_bindir)/%: $(objpfx)% $(+force)
748 $(do-install-program)
750 ifdef install-rootsbin
751 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
752 $(inst_rootsbindir)/%: $(objpfx)% $(+force)
753 $(do-install-program)
756 $(addprefix $(inst_sbindir)/,$(install-sbin)): \
757 $(inst_sbindir)/%: $(objpfx)% $(+force)
758 $(do-install-program)
761 install-lib.a := $(filter lib%.a,$(install-lib))
762 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
763 ifdef install-lib-non.a
764 $(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
765 $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
769 $(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
770 $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
772 $(patsubst %,$(RANLIB) $@,$(filter-out $(non-lib.a),$(<F)))
776 $(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
779 headers := $(strip $(headers))
781 $(addprefix $(inst_includedir)/,$(headers)): $(inst_includedir)/%: % $(+force)
785 .PHONY: install-bin-nosubdir install-rootsbin-nosubdir install-sbin-nosubdir \
786 install-lib-nosubdir install-data-nosubdir install-headers-nosubdir
787 install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
788 install-rootsbin-nosubdir: \
789 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
790 install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
791 install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
792 $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
793 $(addprefix $(libprefix),$(install-lib-non.a)))
794 install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
795 install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
796 install-others-nosubdir: $(install-others)
798 # We need all the `-nosubdir' targets so that `install' in the parent
799 # doesn't depend on several things which each iterate over the subdirs.
800 # This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
801 # subroutine. Then in the parent `install-FOO' also causes subdir makes.
802 install-%:: install-%-nosubdir ;
804 .PHONY: install install-no-libc.a-nosubdir
805 ifeq ($(build-programs),yes)
806 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
807 install-bin-nosubdir install-lib-nosubdir \
808 install-others-nosubdir install-rootsbin-nosubdir \
809 install-sbin-nosubdir
811 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
812 install-lib-nosubdir install-others-nosubdir
814 install: install-no-libc.a-nosubdir
816 # Command to compile $< in $(objdir) using the native libraries.
817 define native-compile
818 $(make-target-directory)
819 $(patsubst %/,cd % &&,$(objpfx)) \
820 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
821 $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(@F)
824 # Command to compile $< in $(common-objdir) using the native libraries.
825 # We must cd to $(objdir) anyway so that $(..)config.h is valid.
826 define common-objdir-compile
827 $(patsubst %/,cd % &&,$(objpfx)) \
828 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
829 $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(..)$(@F)
832 # We always want to use configuration definitions.
833 # Note that this is only used for commands running in $(objpfx).
834 ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) -include $(..)config.h
836 # Support the GNU standard name for this target.
841 TAGS: $(objpfx)distinfo $(..)MakeTAGS
842 $(MAKE) $(addprefix -f ,$^) $@
844 $(..)po/%.pot: $(objpfx)distinfo $(..)MakeTAGS FORCE
845 $(MAKE) $(addprefix -f ,$(filter-out FORCE,$^)) $@
854 # Common cleaning targets.
856 .PHONY: common-mostlyclean common-clean mostlyclean clean
858 mostlyclean: common-mostlyclean
860 # Remove the object files.
862 -rm -f $(addprefix $(objpfx),$(tests) $(test-srcs) $(others) \
863 $(sysdep-others) $(tests-static) stubs \
864 $(addsuffix .o,$(tests) $(test-srcs) \
868 $(addsuffix .out,$(tests) $(test-srcs)) \
869 $(addsuffix .sout,$(tests-static)))
870 -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib) \
872 $(install-lib.so:%.so=%_pic.a))
876 $(foreach o,$(object-suffixes-for-libc),
877 -rm -f $(objpfx)stamp$o $(o-objects))
880 # Also remove the dependencies and generated source files.
881 common-clean: common-mostlyclean
882 -rm -f $(addprefix $(objpfx),$(generated)) $(+depfiles)
883 -rm -fr $(addprefix $(objpfx),$(generated-dirs))
884 -rm -f $(addprefix $(common-objpfx),$(common-generated))
885 -rm -f $(objpfx)distinfo
887 # Produce a file `stubs' which contains `#define __stub_FUNCTION'
888 # for each function which is a stub. We grovel over all the .d files
889 # looking for references to <stub-tag.h>. Then we grovel over each
890 # referenced source file to see what stub function it defines.
893 .PHONY: stubs # The parent Makefile calls this target.
894 stubs: $(objpfx)stubs
896 s = $(sysdep_dir)/generic
897 $(objpfx)stubs: $(+depfiles)
898 # Use /dev/null since `...` might expand to empty.
899 (s=`cd $s && /bin/pwd`; \
900 $(patsubst %/,cd % &&,$(objpfx)) \
901 sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
902 `sed -n -e '\@ $s/[^ ]*\.c@{; s@^.* $s/\([^ ]*\.c\).*$$@'"$$s"'/\1@; h; }' \
903 -e '/stub-tag\.h/{; g; p; }' \
904 $(patsubst $(objpfx)%,%,$^) /dev/null` \
908 # Make the distribution tar file.
911 dist: $(objpfx)distinfo $(..)Make-dist
912 $(MAKE) -f $< -f $(word 2,$^) $(Make-dist-args)
914 # Avoid depending on source files found in sysdeps dirs,
915 # because the references affect implicit rule selection.
916 dist: $(filter-out %.c %.S %.s,$(distribute))
918 # We used to simply export all these variables, but that frequently made the
919 # environment get too large. Instead, we write all the information into
920 # a generated makefile fragment `distinfo', and then include it with -f in
921 # the sub-make that makes the distribution (above).
922 $(objpfx)distinfo: Makefile $(..)Makerules \
923 $(wildcard $(foreach dir,$(sysdirs),$(dir)/Makefile))
924 $(make-target-directory)
927 .PHONY: subdir_distinfo
928 subdir_distinfo: $(objpfx)distinfo
932 echo > $@.new 'subdir := $(subdir)'
933 $(foreach var,subdir-dirs sources elided-routines sysdep_routines \
934 headers sysdep_headers distribute dont_distribute generated \
935 others tests test-srcs extra-libs $(extra-libs:%=%-routines) \
936 tests-static $(extra-libs:%=%-map) versioned \
937 $(addprefix install-,lib lib.so data bin sbin others),
938 echo >> $@.new '$(subdir)-$(var) := $($(var))'
939 echo >> $@.new '$(var) = $$($(subdir)-$(var))')
942 ifneq (,$(strip $(gpl2lgpl)))
943 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
944 # Snarf from the master source and frob the copying notice.
945 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
947 # So I don't edit them by mistake.
950 ifeq ($(with-cvs),yes)
951 test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $^' $@