1 # Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If
16 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 # Cambridge, MA 02139, USA.
20 # Makefile for stdlib routines
24 headers
:= stdlib.h alloca.h
30 getenv putenv setenv \
34 mblen mbstowcs mbtowc wcstombs wctomb \
36 strtol strtoul strtoq strtouq \
37 strtof strtod strtold \
40 distribute
:= exit.h grouping.h
41 tests
:= tst-strtol tst-strtod testmb testrand testsort testdiv
44 # Several mpn functions from GNU MP are used by the strtod function.
45 mpn-routines
:= add_1 add_n addmul_1 cmp divmod divmod_1 udiv_qrnnd \
46 lshift rshift mod_1 mul mul_1 mul_n sub_n submul_1
47 mpn-headers
= longlong.h gmp.h gmp-impl.h gmp-mparam.h asm-syntax.h
49 routines
:= $(strip $(routines
) $(mpn-routines
)) \
51 mpn2flt mpn2dbl mpn2ldbl
52 aux
:= mp_clz_tab fpioconst
53 distribute
:= $(distribute
) $(mpn-headers
) gen-mpn-copy fpioconst.h
61 gmp-srcdir
:= $(firstword $(filter-out ..
//%,$(..
)$(gmp-srcdir
) $(gmp-srcdir
)))
63 # Copy the mpn source files we use from the GNU MP source directory.
64 # `gmp-srcdir' is set by doing `configure --with-gmp=DIR'.
65 # (Do not try this at home. You need an as yet unreleased version of GNU MP.)
67 mpn-sysdep
:= $(addsuffix .c
,$(mpn-routines
)) \
68 $(addsuffix .S
,$(mpn-routines
)) \
69 $(addsuffix .s
,$(mpn-routines
)) gmp-mparam.h asm-syntax.h
71 mpn-try
:= $(addprefix $(gmp-srcdir
)/mpn
/*/,$(mpn-sysdep
))
72 mpn-found
:= $(wildcard $(mpn-try
))
73 mpn-found
:= $(filter-out $(patsubst %.S
,%.s
,$(filter %.s
,$(mpn-found
))),\
77 %.mk
: gen-
%; sh
$< > $@
79 mpn-copy-1
:= $(patsubst $(gmp-srcdir
)/mpn
/%,$(sysdep_dir
)/%,$(mpn-found
))
80 mpn-copy-sysdep
:= $(mpn-copy-sysdep
) $(mpn-copy-1
)
81 $(mpn-copy-1
): $(sysdep_dir
)/%: $(ignore gmp2glibc.sed
) $(gmp-srcdir
)/mpn
/%
84 mpn-stuff
= $(mpn-copy-sysdep
) $(mpn-copy
)
86 # chmod so I don't edit them by mistake.
88 $(ignore sed
-f
$^
> $@
-tmp
)
94 mpn-copy
= $(filter-out $(mpn-sysdep
),$(mpn-headers
) mp_clz_tab.c
)
95 $(mpn-copy
): %: $(ignore gmp2glibc.sed
) $(gmp-srcdir
)/%; $(gmp2glibc
)
97 .PHONY
: copy-mpn clean-mpn
98 copy-mpn
: $(mpn-stuff
)