Wed Apr 3 17:10:44 1996 Roland McGrath <roland@whiz-bang.gnu.ai.mit.edu>
[platform/upstream/glibc.git] / extra-lib.mk
index 353b576..f6a1c83 100644 (file)
@@ -8,22 +8,33 @@
 lib := $(firstword $(extra-libs-left))
 extra-libs-left := $(filter-out $(lib),$(extra-libs-left))
 
+object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
+
+# Make sure these are simply-expanded variables before we append to them,
+# since we want the expressions we append to be expanded right now.
+install-lib := $(install-lib)
+extra-objs := $(extra-objs)
+
 # Add each flavor of library to the lists of things to build and install.
-install-lib += $(foreach o,$(object-suffixes),$(lib:lib%=$(libtype$o)))
-extra-objs += $(foreach o,$(object-suffixes),$($(lib)-routines:=$o))
-alltypes-$(lib) = $(foreach o,$(object-suffixes),\
-                           $(objpfx)$(patsubst %,$(libtype$o),\
-                           $(lib:lib%=%)))
-ifeq (yes,$(build-shared))
-alltypes-$(lib) += $(objpfx)$(lib).so
+install-lib += $(foreach o,$(object-suffixes-$(lib)),$(lib:lib%=$(libtype$o)))
+extra-objs += $(foreach o,$(object-suffixes-$(lib)),$($(lib)-routines:=$o))
+alltypes-$(lib) := $(foreach o,$(object-suffixes-$(lib)),\
+                            $(common-objpfx)$(patsubst %,$(libtype$o),\
+                            $(lib:lib%=%)))
+ifneq (,$(filter .so,$(object-suffixes-$(lib))))
+alltypes-$(lib) += $(common-objpfx)$(lib).so
 endif
 
+ifeq (,$($(lib)-no-lib-dep))
 lib-noranlib: $(alltypes-$(lib))
+else
+others: $(alltypes-$(lib))
+endif
 
 # Use o-iterator.mk to generate a rule for each flavor of library.
 define o-iterator-doit
-$(objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \
+$(common-objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \
   $($(lib)-routines:%=$(objpfx)%$o); $$(build-extra-lib)
 endef
-object-suffixes-left := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
-include $(o-iterator)
+object-suffixes-left = $(object-suffixes-$(lib))
+include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-$(lib)))