diff options
author | Andreas Schwab <schwab@suse.de> | 1999-07-20 08:19:37 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1999-07-20 08:19:37 +0000 |
commit | b3ed821981e392d20d94028aeaa94b8ab31cc678 (patch) | |
tree | 87b6ae143ac0e37700094d3b5600e2f7b3f81f9e /Make-dist | |
parent | 3944f99e84e2fba80b5ac657d91a506e8b791772 (diff) | |
download | glibc-b3ed821981e392d20d94028aeaa94b8ab31cc678.tar glibc-b3ed821981e392d20d94028aeaa94b8ab31cc678.tar.gz glibc-b3ed821981e392d20d94028aeaa94b8ab31cc678.tar.bz2 glibc-b3ed821981e392d20d94028aeaa94b8ab31cc678.zip |
1999-07-19 Andreas Schwab <schwab@suse.de>
* 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.
Diffstat (limited to 'Make-dist')
-rw-r--r-- | Make-dist | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -90,14 +90,17 @@ sources += $(addsuffix .c,$(elided-routines) \ $(filter %.c %.S %.s %.h %.sub,$(distribute)) foo:=$(shell echo '+maybe-sysdeps=$(+maybe-sysdeps)'>&2) # Find all the files that have a generic version. -try-sysdeps := $(foreach dir,$(..)sysdeps/generic $(..)sysdeps/libm-ieee754,\ +generic-dirs = $(..)sysdeps/generic $(..)sysdeps/ieee754 \ + $(..)sysdeps/ieee754/flt-32 $(..)sysdeps/ieee754/dbl-64 \ + $(..)sysdeps/ieee754/ldbl-96 $(..)sysdeps/ieee754/ldbl-128 +try-sysdeps := $(foreach dir,$(generic-dirs),\ $(addprefix $(dir)/,$(+maybe-sysdeps))) foo:=$(shell echo 'try-sysdeps=$(try-sysdeps)'>&2) +sysdeps := $(wildcard $(try-sysdeps)) foo:=$(shell echo 'generic +sysdeps=$(+sysdeps)'>&2) -+sysdep-names := $(sort $(patsubst $(..)sysdeps/generic/%,%,\ - $(patsubst $(..)sysdeps/libm-ieee754/%,%,\ - $(+sysdeps)))) ++sysdep-names := $(sort $(foreach dir, $(generic-dirs),\ + $(patsubst $(dir)/%,%,\ + $(filter $(dir)/%,$(+sysdeps))))) foo:=$(shell echo '+sysdep-names=$(+sysdep-names)' >&2) ifdef subdir-dirs |