b3ed821981
* libio/Makefile (routines): Add fwprintf. PowerPC has own version of w_sqrt.c and w_sqrtf.c. * math/w_sqrt.c: Moved to ... * sysdeps/generic/w_sqrt.c: ... here. * math/w_sqrtf.c: Moved to ... * sysdeps/generic/w_sqrtf.c: ... here. * Make-dist (generic-dirs): New variable. (try-sysdeps, +sysdep-names): Use it. * extra-lib.mk (all-$(lib)-routines): New variable. Use it instead of $(lib)-routines. * elf/Makefile (distribute): Add dl-cache.h. * db2/Makefile (distribute): Add all new files. * iconvdata/Makefile (distribute): Don't distribute CVS directory. * math/Makefile (distribute): Remove machine/endian.h, add math_ldbl.h. * stdio-common/Makefile (distribute): Add _itowa.h. * sysdeps/generic/Dist: Remove make_siglist.c, add siglist.h. * sysdeps/gnu/Dist: Add eval.c * sysdeps/gnu/Makefile (libdl-sysdep_routines) [$(subdir) = dlfcn]: Add to this instead of libdl-routines. * sysdeps/ieee754/ldbl-128/Dist: New file. * sysdeps/mach/hurd/Dist: Add siglist.h * sysdeps/unix/sysv/linux/Dist: Add kernel-features.h.
81 lines
2.8 KiB
Makefile
81 lines
2.8 KiB
Makefile
# This file is included several times in a row, once
|
|
# for each element of $(extra-libs). $(extra-libs-left)
|
|
# is initialized first to $(extra-libs) so that with each
|
|
# inclusion, we advance $(lib) to the next library name (e.g. libfoo).
|
|
# The variable $($(lib)-routines) defines the list of modules
|
|
# to be included in that library. A sysdep Makefile can add to
|
|
# $(lib)-sysdep_routines to include additional modules.
|
|
|
|
lib := $(firstword $(extra-libs-left))
|
|
extra-libs-left := $(filter-out $(lib),$(extra-libs-left))
|
|
|
|
object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
|
|
|
|
ifneq (,$(object-suffixes-$(lib)))
|
|
|
|
# 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)
|
|
|
|
# The modules that go in $(lib).
|
|
all-$(lib)-routines := $($(lib)-routines) $($(lib)-sysdep_routines)
|
|
|
|
# Add each flavor of library to the lists of things to build and install.
|
|
install-lib += $(foreach o,$(object-suffixes-$(lib)),$(lib:lib%=$(libtype$o)))
|
|
extra-objs += $(foreach o,$(object-suffixes-$(lib):.os=),\
|
|
$(patsubst %,%$o,$(filter-out \
|
|
$($(lib)-shared-only-routines),\
|
|
$(all-$(lib)-routines))))
|
|
ifneq (,$(filter .os,$(object-suffixes-$(lib))))
|
|
extra-objs += $(all-$(lib)-routines:%=%.os)
|
|
endif
|
|
alltypes-$(lib) := $(foreach o,$(object-suffixes-$(lib)),\
|
|
$(objpfx)$(patsubst %,$(libtype$o),\
|
|
$(lib:lib%=%)))
|
|
|
|
ifeq (,$(filter $(lib),$(extra-libs-others)))
|
|
lib-noranlib: $(alltypes-$(lib))
|
|
ifeq (yes,$(build-shared))
|
|
lib-noranlib: $(objpfx)$(lib).so$($(lib).so-version)
|
|
endif
|
|
else
|
|
others: $(alltypes-$(lib))
|
|
endif
|
|
|
|
# The linked shared library is never a dependent of lib-noranlib,
|
|
# because linking it will depend on libc.so already being built.
|
|
ifneq (,$(filter .os,$(object-suffixes-$(lib))))
|
|
others: $(objpfx)$(lib).so$($(lib).so-version)
|
|
endif
|
|
|
|
|
|
# Use o-iterator.mk to generate a rule for each flavor of library.
|
|
ifneq (,$(filter-out .os,$(object-suffixes-$(lib))))
|
|
define o-iterator-doit
|
|
$(objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \
|
|
$(patsubst %,$(objpfx)%$o,\
|
|
$(filter-out $($(lib)-shared-only-routines),\
|
|
$(all-$(lib)-routines))); \
|
|
$$(build-extra-lib)
|
|
endef
|
|
object-suffixes-left = $(object-suffixes-$(lib):.os=)
|
|
include $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-$(lib):.os=))
|
|
endif
|
|
|
|
ifneq (,$(filter .os,$(object-suffixes-$(lib))))
|
|
$(objpfx)$(patsubst %,$(libtype.os),$(lib:lib%=%)): \
|
|
$(all-$(lib)-routines:%=$(objpfx)%.os)
|
|
$(build-extra-lib)
|
|
endif
|
|
|
|
ifeq ($(versioning),yes)
|
|
# Add the version script to the dependencies of the shared library.
|
|
$(objpfx)$(lib).so: $(firstword $($(lib)-map) \
|
|
$(addprefix $(common-objpfx), \
|
|
$(filter $(lib).map, \
|
|
$(version-maps))))
|
|
endif
|
|
|
|
endif
|