diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-01 09:07:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-01 09:07:31 +0000 |
commit | 193ce8dcd6c1eea5c68e6d4d8db2002c0085925b (patch) | |
tree | 92e499fa24dc5292e2bb3d2be2d473c1bf3e5b52 /extra-lib.mk | |
parent | 2f8033d6067fff3e7d77bb2174a9564bd7199cea (diff) | |
download | glibc-193ce8dcd6c1eea5c68e6d4d8db2002c0085925b.tar.gz glibc-193ce8dcd6c1eea5c68e6d4d8db2002c0085925b.tar.xz glibc-193ce8dcd6c1eea5c68e6d4d8db2002c0085925b.zip |
* Makerules (lib%.so: lib%_pic.a): Pass -L options for subdir and cvs/libc-950402
parent objdirs. * extra-lib.mk (object-suffixes-$(lib)): New variable, produced by filtering out $($(lib)-inhibit-o); use that instead of $(object-suffixes) in all the other variables.
Diffstat (limited to 'extra-lib.mk')
-rw-r--r-- | extra-lib.mk | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/extra-lib.mk b/extra-lib.mk index 353b576872..436170e0d0 100644 --- a/extra-lib.mk +++ b/extra-lib.mk @@ -8,13 +8,15 @@ lib := $(firstword $(extra-libs-left)) extra-libs-left := $(filter-out $(lib),$(extra-libs-left)) +object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes)) + # 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),\ +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)),\ $(objpfx)$(patsubst %,$(libtype$o),\ $(lib:lib%=%))) -ifeq (yes,$(build-shared)) +ifneq (,$(filter .so,$(object-suffixes-$(lib)))) alltypes-$(lib) += $(objpfx)$(lib).so endif @@ -25,5 +27,5 @@ define o-iterator-doit $(objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \ $($(lib)-routines:%=$(objpfx)%$o); $$(build-extra-lib) endef -object-suffixes-left := $(filter-out $($(lib)-inhibit-o),$(object-suffixes)) +object-suffixes-left = $(object-suffixes-$(lib)) include $(o-iterator) |