]> git.ipfire.org Git - thirdparty/glibc.git/blame - extra-lib.mk
Update.
[thirdparty/glibc.git] / extra-lib.mk
CommitLineData
693e7b96
RM
1# This file is included several times in a row, once
2# for each element of $(extra-libs). $(extra-libs-left)
3# is initialized first to $(extra-libs) so that with each
4# inclusion, we advance $(lib) to the next library name (e.g. libfoo).
5# The variable $($(lib)-routines) defines the list of modules
6# to be included in that library.
7
8lib := $(firstword $(extra-libs-left))
9extra-libs-left := $(filter-out $(lib),$(extra-libs-left))
10
193ce8dc
RM
11object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
12
a13dab1c
RM
13ifneq (,$(object-suffixes-$(lib)))
14
6aa8372e 15# Make sure these are simply-expanded variables before we append to them,
e97ec51d 16# since we want the expressions we append to be expanded right now.
6aa8372e
RM
17install-lib := $(install-lib)
18extra-objs := $(extra-objs)
19
693e7b96 20# Add each flavor of library to the lists of things to build and install.
193ce8dc 21install-lib += $(foreach o,$(object-suffixes-$(lib)),$(lib:lib%=$(libtype$o)))
84724245
RM
22extra-objs += $(foreach o,$(object-suffixes-$(lib)),\
23 $(patsubst %,%$o,$($(lib)-routines)))
6aa8372e 24alltypes-$(lib) := $(foreach o,$(object-suffixes-$(lib)),\
64166d98 25 $(objpfx)$(patsubst %,$(libtype$o),\
6aa8372e 26 $(lib:lib%=%)))
693e7b96 27
e33b438a 28ifeq (,$(filter $(lib),$(extra-libs-others)))
693e7b96 29lib-noranlib: $(alltypes-$(lib))
5f0e6fc7 30ifeq (yes,$(build-shared))
edf5b2d7 31lib-noranlib: $(objpfx)$(lib).so$($(lib).so-version)
5f0e6fc7 32endif
e97ec51d
RM
33else
34others: $(alltypes-$(lib))
35endif
693e7b96 36
d06b536d
RM
37# The linked shared library is never a dependent of lib-noranlib,
38# because linking it will depend on libc.so already being built.
39ifneq (,$(filter .so,$(object-suffixes-$(lib))))
d705269e 40others: $(objpfx)$(lib).so$($(lib).so-version)
d06b536d
RM
41endif
42
43
693e7b96
RM
44# Use o-iterator.mk to generate a rule for each flavor of library.
45define o-iterator-doit
64166d98 46$(objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \
693e7b96
RM
47 $($(lib)-routines:%=$(objpfx)%$o); $$(build-extra-lib)
48endef
193ce8dc 49object-suffixes-left = $(object-suffixes-$(lib))
11872325 50include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-$(lib)))
a13dab1c 51
f21acc89
UD
52# Add the version script to the dependencies of the shared library.
53$(objpfx)$(lib).so: $($(lib)-map)
54
a13dab1c 55endif