diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-06 10:54:55 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-06 10:54:55 +0000 |
commit | a0da2d51da6bc1dc55f28333da216e4bfdccd85b (patch) | |
tree | b7aa259d51aa40817db7d361e49c410181abc4cf /math | |
parent | 2549e7587d7583704a338533cdc3892eece55ab0 (diff) | |
download | glibc-a0da2d51da6bc1dc55f28333da216e4bfdccd85b.zip glibc-a0da2d51da6bc1dc55f28333da216e4bfdccd85b.tar.gz glibc-a0da2d51da6bc1dc55f28333da216e4bfdccd85b.tar.bz2 |
Fri Jul 5 12:22:51 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* math/Makefile (routines): Move s_ldexp, s_frexp, s_modf here from
calls, since the f and l versions are not all there yet.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/Makefile b/math/Makefile index fd19e31..c974621 100644 --- a/math/Makefile +++ b/math/Makefile @@ -55,8 +55,9 @@ long-m-routines = $(patsubst %_rl,%l_r,$(libm-calls:=l)) # not ready yet # These functions are in libc instead of libm because __printf_fp # calls them, so any program using printf will need them linked in, # and we don't want to have to link every program with -lm. -calls = s_isinf s_isnan s_frexp s_ldexp s_modf -routines = $(calls) $(calls:=f) $(long-c-$(long-double-fcts)) +calls = s_isinf s_isnan +routines = $(calls) $(calls:=f) $(long-c-$(long-double-fcts)) \ + s_frexp s_ldexp s_modf long-c-yes = $(calls:=l) distribute += $(long-c-yes:=.c) |