Upadte.
[glibc.git] / math / Makefile
blobe0a9c6e86e96565b86ff151a9a458847c39e117c
1 # Makefile for the math library.
3 # Copyright (C) 1996 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Library General Public License as
8 # published by the Free Software Foundation; either version 2 of the
9 # License, or (at your option) any later version.
11 # The GNU C Library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Library General Public License for more details.
16 # You should have received a copy of the GNU Library General Public
17 # License along with the GNU C Library; see the file COPYING.LIB. If
18 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
19 # Cambridge, MA 02139, USA.
21 subdir := math
23 # Installed header files.
24 headers := math.h mathcalls.h __math.h huge_val.h nan.h fpu_control.h
26 # Internal header files.
27 distribute := math_private.h machine/asm.h machine/endian.h
29 # FPU support code.
30 aux := fpu_control setfpucw
32 # Build the -lm library.
34 extra-libs := libm
36 libm-support = k_standard s_lib_version s_matherr s_signgam
37 libm-calls = e_acos e_acosh e_asin e_atan2 e_atanh e_cosh e_exp e_fmod \
38 e_hypot e_j0 e_j1 e_jn e_lgamma_r e_log e_log10 e_pow \
39 e_rem_pio2 e_remainder e_scalb e_sinh e_sqrt k_cos \
40 k_rem_pio2 k_sin k_tan s_asinh s_atan s_cbrt \
41 s_ceil s_copysign s_cos s_erf s_expm1 s_fabs s_finite \
42 s_floor s_frexp s_ilogb s_ldexp s_log1p s_logb \
43 s_modf s_nextafter s_rint s_scalbn s_significand \
44 s_sin s_tan s_tanh w_acos w_acosh w_asin \
45 w_atan2 w_atanh w_cabs w_cosh w_drem w_exp w_fmod w_gamma \
46 w_gamma_r w_hypot w_j0 w_j1 w_jn w_lgamma w_lgamma_r \
47 w_log w_log10 w_pow w_remainder w_scalb w_sinh w_sqrt
48 libm-routines = $(libm-support) $(libm-calls) \
49 $(patsubst %_rf,%f_r,$(libm-calls:=f)) \
50 $(long-m-$(long-double-fcts))
51 long-m-routines = $(patsubst %_rl,%l_r,$(libm-calls:=l)) # not ready yet
52 #long-m-yes = $(long-m-routines) # uncomment this when code works
53 #distribute += $(long-m-routines:=.c) # and this when at least all files exist
55 # These functions are in libc instead of libm because __printf_fp
56 # calls them, so any program using printf will need them linked in,
57 # and we don't want to have to link every program with -lm.
58 calls = s_isinf s_isnan s_finite s_copysign s_modf s_scalbn s_frexp s_ldexp
59 routines = $(calls) $(calls:=f) $(long-c-$(long-double-fcts))
60 long-c-yes = $(calls:=l)
61 distribute += $(long-c-yes:=.c)
64 # The -lieee module sets the _LIB_VERSION_ switch to IEEE mode
65 # for error handling in the -lm functions.
66 install-lib += libieee.a
67 non-lib.a += libieee.a
68 extra-objs += libieee.a ieee-math.o
69 distribute += ieee-math.c
71 include ../Rules
74 # This file defines the default _LIB_VERSION variable that controls
75 # the error return conventions for the math functions.
76 CPPFLAGS-s_lib_version.c := -D_POSIX_MODE
78 # We don't want the fdlibm code to use the inline math functions,
79 # only the fdlibm code.
80 CPPFLAGS += -D__NO_MATH_INLINES
82 ifneq ($(long-double-fcts),yes)
83 # The `double' and `long double' types are the same on this machine.
84 # We won't compile the `long double' code at all. Tell the `double' code
85 # to define aliases for the `FUNCl' names. To avoid type conflicts in
86 # defining those aliases, tell <math.h> to declare the `FUNCl' names with
87 # `double' instead of `long double'.
88 CPPFLAGS += -DNO_LONG_DOUBLE -D_Mlong_double_=double
89 endif
91 # The fdlibm code generates a lot of these warnings but is otherwise clean.
92 override CFLAGS += -Wno-uninitialized -Wno-write-strings
94 # The -lieee library is actually an object file.
95 # The module just defines the _LIB_VERSION_ variable.
96 # It's not a library to make sure it is linked in instead of s_lib_version.o.
97 $(objpfx)libieee.a: $(objpfx)ieee-math.o
98 rm -f $@
99 ln $< $@