OSDN Git Service

be5bfc654d2d958108fd49bec689bb81f7cfa387
[uclinux-h8/uClibc.git] / libm / Makefile.in
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2006 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-libm := -DNOT_IN_libc -DIS_IN_libm $(SSP_ALL_CFLAGS)
24 CFLAGS-libm += -D_IEEE_LIBM -D_ISOC99_SOURCE -D_SVID_SOURCE
25
26 LDFLAGS-libm.so := $(LDFLAGS)
27
28 LIBS-libm.so := $(LIBS)
29
30 libm_FULL_NAME := libm-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
31
32 libm_ARCH_DIR:=$(top_srcdir)libm/$(TARGET_ARCH)
33 libm_ARCH_OUT:=$(top_builddir)libm/$(TARGET_ARCH)
34
35 ifeq ($(UCLIBC_HAS_FPU),y)
36 ifeq ($(DO_C99_MATH),y)
37 -include $(libm_ARCH_DIR)/Makefile.arch
38 endif
39 endif
40
41 FL_MSRC := float_wrappers.c
42
43 ifeq ($(DO_C99_MATH),y)
44 CSRC := \
45         e_acos.c e_acosh.c e_asin.c e_atan2.c e_atanh.c e_cosh.c \
46         e_exp.c e_fmod.c e_gamma.c e_gamma_r.c e_hypot.c e_j0.c \
47         e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c e_log.c e_log10.c \
48         e_pow.c e_remainder.c e_rem_pio2.c e_scalb.c e_sinh.c \
49         e_sqrt.c k_cos.c k_rem_pio2.c k_sin.c k_standard.c k_tan.c \
50         s_asinh.c s_atan.c s_cbrt.c s_ceil.c s_copysign.c s_cos.c \
51         s_erf.c s_expm1.c s_fabs.c s_finite.c s_floor.c s_frexp.c \
52         s_ilogb.c s_ldexp.c s_lib_version.c s_lround.c s_llround.c \
53         s_log1p.c s_logb.c s_matherr.c s_modf.c s_nextafter.c s_round.c \
54         s_rint.c s_scalbn.c s_signgam.c s_significand.c s_sin.c s_tan.c \
55         s_tanh.c w_acos.c w_acosh.c w_asin.c w_atan2.c w_atanh.c w_cabs.c \
56         w_cosh.c w_drem.c w_exp.c w_fmod.c w_gamma.c w_gamma_r.c \
57         w_hypot.c w_j0.c w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c \
58         w_log.c w_log10.c w_pow.c w_remainder.c w_scalb.c w_sinh.c \
59         w_sqrt.c fpmacros.c nan.c
60 FL_MOBJ := \
61         acosf.o acoshf.o asinf.o asinhf.o atan2f.o atanf.o atanhf.o cbrtf.o \
62         ceilf.o copysignf.o cosf.o coshf.o erfcf.o erff.o exp2f.o expf.o \
63         expm1f.o fabsf.o fdimf.o floorf.o fmaf.o fmaxf.o fminf.o fmodf.o \
64         frexpf.o hypotf.o ilogbf.o ldexpf.o lgammaf.o llroundf.o log10f.o \
65         log1pf.o log2f.o logbf.o logf.o lrintf.o lroundf.o modff.o nearbyintf.o \
66         nextafterf.o powf.o remainderf.o remquof.o rintf.o roundf.o \
67         scalblnf.o scalbnf.o sinf.o sinhf.o sqrtf.o tanf.o tanhf.o \
68         tgammaf.o truncf.o
69 else
70 # This list of math functions was taken from POSIX/IEEE 1003.1b-1993
71 CSRC := \
72         w_acos.c w_asin.c s_atan.c w_atan2.c s_ceil.c s_cos.c \
73         w_cosh.c w_exp.c s_fabs.c s_floor.c w_fmod.c s_frexp.c \
74         s_ldexp.c w_log.c w_log10.c s_modf.c w_pow.c s_sin.c \
75         w_sinh.c w_sqrt.c s_tan.c s_tanh.c \
76         s_expm1.c s_scalbn.c s_copysign.c e_acos.c e_asin.c e_atan2.c \
77         k_cos.c e_cosh.c e_exp.c e_fmod.c e_log.c e_log10.c e_pow.c \
78         k_sin.c e_sinh.c e_sqrt.c k_tan.c e_rem_pio2.c k_rem_pio2.c \
79         s_finite.c
80 # We'll add sqrtf to avoid problems with libstdc++
81 FL_MOBJ := sqrtf.o
82 endif
83
84 libm_DIR := $(top_srcdir)libm
85 libm_OUT := $(top_builddir)libm
86
87 # assume that arch specific versions are provided as single sources/objects
88 ifeq ($(UCLIBC_HAS_FPU),y)
89 ifeq ($(DO_C99_MATH),y)
90 ifneq ($(strip $(libm_ARCH_OBJS)),)
91 CFLAGS-libm/$(TARGET_ARCH)/ := $(CFLAGS-libm)
92
93 # remove generic sources, if arch specific version is present
94 ifneq ($(strip $(libm_ARCH_SRC)),)
95 CSRC := $(filter-out $(notdir $(libm_ARCH_SRC)),$(CSRC))
96 endif
97
98 # remove generic objects built from multi-sources, if arch specific version is present
99 FL_MOBJ := $(filter-out $(notdir $(libm_ARCH_OBJS)),$(FL_MOBJ))
100
101 # we also try to remove % if s_% is in arch specific subdir
102 FL_MOBJ := $(filter-out $(patsubst s_%.o,%.o,$(notdir $(libm_ARCH_OBJS))),$(FL_MOBJ))
103 endif
104 endif
105 endif
106
107 libm_SRC := $(patsubst %.c,$(libm_DIR)/%.c,$(CSRC))
108 libm_OBJ := $(patsubst $(libm_DIR)/%.c,$(libm_OUT)/%.o,$(libm_SRC))
109
110 libm_MSRC := $(libm_DIR)/$(FL_MSRC)
111 libm_MOBJ := $(patsubst %.o,$(libm_OUT)/%.o,$(FL_MOBJ))
112
113 ifeq ($(DOMULTI),y)
114 CFLAGS-libm += $(patsubst %,-DL_%,$(subst .o,,$(notdir $(libm_MOBJ))))
115 endif
116
117 libm_OBJS := $(libm_OBJ) $(libm_MOBJ)
118
119 ifeq ($(DOPIC),y)
120 libm-a-y += $(libm_OBJS:.o=.os)
121 else
122 libm-a-y += $(libm_OBJS)
123 endif
124 libm-so-y += $(libm_OBJS:.o=.os)
125
126 lib-a-$(UCLIBC_HAS_FLOATS) += $(top_builddir)lib/libm.a
127 lib-so-$(UCLIBC_HAS_FLOATS) += $(top_builddir)lib/libm.so
128 objclean-y += libm_clean
129
130 ifeq ($(DOMULTI),n)
131 ifeq ($(DOPIC),y)
132 $(top_builddir)lib/libm.so: $(top_builddir)lib/libm.a $(libc)
133 else
134 $(top_builddir)lib/libm.so: $(libm_OUT)/libm_so.a $(libc)
135 endif
136         $(call link.so,$(libm_FULL_NAME),$(MAJOR_VERSION))
137 else
138 $(top_builddir)lib/libm.so: $(libm_OUT)/libm.oS $(libc)
139         $(call linkm.so,$(libm_FULL_NAME),$(MAJOR_VERSION))
140 endif
141
142 $(libm_OUT)/libm_so.a: $(libm-so-y)
143         $(Q)$(RM) $@
144         $(do_strip)
145         $(do_ar)
146
147 $(libm_OUT)/libm.oS: $(libm_SRC) $(libm_MSRC) $(libm_ARCH_SRC)
148         $(Q)$(RM) $@
149         $(compile-m)
150         $(do_t_strip)
151
152 $(top_builddir)lib/libm.a: $(libm-a-y)
153         $(Q)$(INSTALL) -d $(dir $@)
154         $(Q)$(RM) $@
155         $(do_strip)
156         $(do_ar)
157
158 $(libm_MOBJ): $(libm_MSRC)
159         $(compile.m)
160
161 $(libm_MOBJ:.o=.os): $(libm_MSRC)
162         $(compile.m)
163
164 libm_clean:
165         $(RM) $(libm_OUT)/{,*/}*.{o,os,oS,a}