Mon May 27 10:10:00 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / extra-lib.mk
blobea5812ca65f4ed447c9f59d577de979c8740a6ec
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.
8 lib := $(firstword $(extra-libs-left))
9 extra-libs-left := $(filter-out $(lib),$(extra-libs-left))
11 object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
13 ifneq (,$(object-suffixes-$(lib)))
15 # Make sure these are simply-expanded variables before we append to them,
16 # since we want the expressions we append to be expanded right now.
17 install-lib := $(install-lib)
18 extra-objs := $(extra-objs)
20 # Add each flavor of library to the lists of things to build and install.
21 install-lib += $(foreach o,$(object-suffixes-$(lib)),$(lib:lib%=$(libtype$o)))
22 extra-objs += $(foreach o,$(object-suffixes-$(lib)),$($(lib)-routines:=$o))
23 alltypes-$(lib) := $(foreach o,$(object-suffixes-$(lib)),\
24 $(objpfx)$(patsubst %,$(libtype$o),\
25 $(lib:lib%=%)))
26 ifneq (,$(filter .so,$(object-suffixes-$(lib))))
27 alltypes-$(lib) += $(objpfx)$(lib).so
28 endif
30 ifeq (,$($(lib)-no-lib-dep))
31 lib-noranlib: $(alltypes-$(lib))
32 else
33 others: $(alltypes-$(lib))
34 endif
36 # Use o-iterator.mk to generate a rule for each flavor of library.
37 define o-iterator-doit
38 $(objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \
39 $($(lib)-routines:%=$(objpfx)%$o); $$(build-extra-lib)
40 endef
41 object-suffixes-left = $(object-suffixes-$(lib))
42 include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-$(lib)))
44 endif