OSDN Git Service

Moved guard_setup to dl-osinfo.h (used commonly by ldso and libc). Renamed to _dl_set...
[uclinux-h8/uClibc.git] / libm / Makefile.in
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
4 #
5 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 #
7 # The routines included in this math library are derived from the
8 # math library for Apple's MacOS X/Darwin math library, which was
9 # itself swiped from FreeBSD.  The original copyright information
10 # is as follows:
11 #
12 #     Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
13 #
14 #     Developed at SunPro, a Sun Microsystems, Inc. business.
15 #     Permission to use, copy, modify, and distribute this
16 #     software is freely granted, provided that this notice
17 #     is preserved.
18 #
19 # It has been ported to work with uClibc and generally behave
20 # by Erik Andersen <andersen@codepoet.org>
21 #
22
23 CFLAGS+=$(SSP_ALL_CFLAGS)
24
25 CFLAGS+=-D_IEEE_LIBM -D_ISOC99_SOURCE -D_SVID_SOURCE
26
27 CFLAGS-s_lib_version.c=-D_POSIX_MODE
28
29 LIB_NAME:=libm
30
31 ifeq ($(HAS_FPU),y)
32 -include $(top_srcdir)libm/$(TARGET_ARCH)/Makefile.in
33 endif
34
35 FL_MSRC:=float_wrappers.c
36
37 ifeq ($(DO_C99_MATH),y)
38 CSRC:=  e_acos.c e_acosh.c e_asin.c e_atan2.c e_atanh.c e_cosh.c \
39         e_exp.c e_fmod.c e_gamma.c e_gamma_r.c e_hypot.c e_j0.c \
40         e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c e_log.c e_log10.c \
41         e_pow.c e_remainder.c e_rem_pio2.c e_scalb.c e_sinh.c \
42         e_sqrt.c k_cos.c k_rem_pio2.c k_sin.c k_standard.c k_tan.c \
43         s_asinh.c s_atan.c s_cbrt.c s_ceil.c s_copysign.c s_cos.c \
44         s_erf.c s_expm1.c s_fabs.c s_finite.c s_floor.c s_frexp.c \
45         s_ilogb.c s_ldexp.c s_lib_version.c s_log1p.c s_logb.c \
46         s_matherr.c s_modf.c s_nextafter.c s_rint.c s_scalbn.c \
47         s_signgam.c s_significand.c s_sin.c s_tan.c s_tanh.c \
48         w_acos.c w_acosh.c w_asin.c w_atan2.c w_atanh.c w_cabs.c \
49         w_cosh.c w_drem.c w_exp.c w_fmod.c w_gamma.c w_gamma_r.c \
50         w_hypot.c w_j0.c w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c \
51         w_log.c w_log10.c w_pow.c w_remainder.c w_scalb.c w_sinh.c \
52         w_sqrt.c fpmacros.c nan.c
53 FL_MOBJ:=acosf.o acoshf.o asinf.o asinhf.o atan2f.o atanf.o atanhf.o cbrtf.o \
54         ceilf.o copysignf.o cosf.o coshf.o erfcf.o erff.o exp2f.o expf.o \
55         expm1f.o fabsf.o fdimf.o floorf.o fmaf.o fmaxf.o fminf.o fmodf.o \
56         frexpf.o hypotf.o ilogbf.o ldexpf.o lgammaf.o log10f.o log1pf.o \
57         log2f.o logbf.o logf.o lrintf.o lroundf.o modff.o nearbyintf.o \
58         nextafterf.o powf.o remainderf.o remquof.o rintf.o roundf.o \
59         scalblnf.o scalbnf.o sinf.o sinhf.o sqrtf.o tanf.o tanhf.o \
60         tgammaf.o truncf.o
61 else
62 # This list of math functions was taken from POSIX/IEEE 1003.1b-1993
63 CSRC:=  w_acos.c w_asin.c s_atan.c w_atan2.c s_ceil.c s_cos.c \
64         w_cosh.c w_exp.c s_fabs.c s_floor.c w_fmod.c s_frexp.c \
65         s_ldexp.c w_log.c w_log10.c s_modf.c w_pow.c s_sin.c \
66         w_sinh.c w_sqrt.c s_tan.c s_tanh.c \
67         s_expm1.c s_scalbn.c s_copysign.c e_acos.c e_asin.c e_atan2.c \
68         k_cos.c e_cosh.c e_exp.c e_fmod.c e_log.c e_log10.c e_pow.c \
69         k_sin.c e_sinh.c e_sqrt.c k_tan.c e_rem_pio2.c k_rem_pio2.c \
70         s_finite.c
71 # We'll add sqrtf to avoid problems with libstdc++
72 FL_MOBJ:=sqrtf.o
73 endif
74
75 libm_DIR:=$(top_srcdir)libm
76 libm_OUT:=$(top_builddir)libm
77
78 # assume that arch specific versions are provided as single sources/objects
79 ifeq ($(HAS_FPU),y)
80 ifneq ($(strip $(libm_ARCH_OBJS)),)
81
82 # remove generic sources, if arch specific version is present
83 ifneq ($(strip $(libm_ARCH_SRC)),)
84 CSRC:=$(filter-out $(notdir $(libm_ARCH_SRC)),$(CSRC))
85 endif
86
87 # remove generic objects built from multi-sources, if arch specific version is present
88 FL_MOBJ:=$(filter-out $(notdir $(libm_ARCH_OBJS)),$(FL_MOBJ))
89
90 # we also try to remove % if s_% is in arch specific subdir
91 FL_MOBJ:=$(filter-out $(patsubst s_%.o,%.o,$(notdir $(libm_ARCH_OBJS))),$(FL_MOBJ))
92 endif
93 endif
94
95 ifeq ($(DO_C99_MATH),y)
96 LIBM_NO_MULTI:=s_lib_version.c
97 CSRC:=$(filter-out $(LIBM_NO_MULTI),$(CSRC))
98 endif
99
100 libm_SRC:=$(patsubst %.c,$(libm_DIR)/%.c,$(CSRC))
101 libm_OBJ:=$(patsubst $(libm_DIR)/%.c,$(libm_OUT)/%.o,$(libm_SRC))
102
103 libm_MSRC:=$(libm_DIR)/$(FL_MSRC)
104 libm_MOBJ:=$(patsubst %.o,$(libm_OUT)/%.o,$(FL_MOBJ))
105
106 libm_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(libm_MOBJ))))
107
108 libm_OBJS:=$(libm_OBJ) $(libm_MOBJ)
109 ifeq ($(DO_C99_MATH),y)
110 libm_OBJS+=$(patsubst %.c,$(libm_OUT)/%.o,$(LIBM_NO_MULTI))
111 endif
112
113 $(libm_MOBJ) $(libm_MOBJ:.o=.os): $(libm_MSRC)
114         $(compile.m)
115
116 libm-a-$(UCLIBC_HAS_FLOATS)+=$(libm_OBJS)
117 libm-so-$(UCLIBC_HAS_FLOATS)+=$(libm_OBJS:.o=.os)
118
119 CFLAGS-multi-$(UCLIBC_HAS_FLOATS)+=$(libm_DEF)
120 libm-multi-$(UCLIBC_HAS_FLOATS)+=$(libm_SRC) $(libm_MSRC)
121 ifeq ($(DO_C99_MATH),y)
122 libm-nomulti-$(UCLIBC_HAS_FLOATS)+=$(patsubst %.c,$(libm_OUT)/%.o,$(LIBM_NO_MULTI))
123 endif
124
125 objclean-y+=libm_clean
126
127 lib-a-$(UCLIBC_HAS_FLOATS)+=$(top_builddir)lib/libm.a
128 lib-so-$(UCLIBC_HAS_FLOATS)+=$(top_builddir)lib/libm.so