OSDN Git Service

fix building
[uclinux-h8/uClibc.git] / libm / Makefile
1 # Makefile for uClibc's math library
2 #
3 # Copyright (C) 2000-2002 Erik Andersen <andersen@uclibc.org>
4 #
5 # The routines included in this math library are derived from the
6 # math library for Apple's MacOS X/Darwin math library, which was
7 # itself swiped from FreeBSD.  The original copyright information
8 # is as follows:
9 #
10 #     Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
11 #
12 #     Developed at SunPro, a Sun Microsystems, Inc. business.
13 #     Permission to use, copy, modify, and distribute this
14 #     software is freely granted, provided that this notice
15 #     is preserved.
16 #
17 # It has been ported to work with uClibc and generally behave
18 # by Erik Andersen <andersen@codepoet.org>
19 #
20 # This program is free software; you can redistribute it and/or modify it under
21 # the terms of the GNU Library General Public License as published by the Free
22 # Software Foundation; either version 2 of the License, or (at your option) any
23 # later version.
24 #
25 # This program is distributed in the hope that it will be useful, but WITHOUT
26 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
27 # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
28 # details.
29 #
30 # You should have received a copy of the GNU Library General Public License
31 # along with this program; if not, write to the Free Software Foundation, Inc.,
32 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33
34 TOPDIR=../
35 include $(TOPDIR)Rules.mak
36
37 CFLAGS+=$(SSP_ALL_CFLAGS)
38
39 CFLAGS+=-D_IEEE_LIBM -D_ISOC99_SOURCE -D_SVID_SOURCE
40
41 ALL_SUBDIRS = powerpc
42
43 DIRS =
44 ifeq ($(strip $(HAS_FPU)),y)
45 ifeq ($(TARGET_ARCH),$(wildcard $(TARGET_ARCH)))
46 DIRS = $(TARGET_ARCH)
47 endif
48 endif
49
50 LIB_NAME=libm
51 AR_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).a
52 SO_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).so
53 SO_FULL_NAME=$(LIB_NAME)-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
54
55 FL_MSRC = float_wrappers.c
56
57 ifeq ($(strip $(DO_C99_MATH)),y)
58 CSRC =   e_acos.c e_acosh.c e_asin.c e_atan2.c e_atanh.c e_cosh.c\
59          e_exp.c e_fmod.c e_gamma.c e_gamma_r.c e_hypot.c e_j0.c\
60          e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c e_log.c e_log10.c\
61          e_pow.c e_remainder.c e_rem_pio2.c e_scalb.c e_sinh.c\
62          e_sqrt.c k_cos.c k_rem_pio2.c k_sin.c k_standard.c k_tan.c\
63          s_asinh.c s_atan.c s_cbrt.c s_ceil.c s_copysign.c s_cos.c\
64          s_erf.c s_expm1.c s_fabs.c s_finite.c s_floor.c s_frexp.c\
65          s_ilogb.c s_ldexp.c s_lib_version.c s_log1p.c s_logb.c\
66          s_matherr.c s_modf.c s_nextafter.c s_rint.c s_scalbn.c\
67          s_signgam.c s_significand.c s_sin.c s_tan.c s_tanh.c\
68          w_acos.c w_acosh.c w_asin.c w_atan2.c w_atanh.c w_cabs.c\
69          w_cosh.c w_drem.c w_exp.c w_fmod.c w_gamma.c w_gamma_r.c\
70          w_hypot.c w_j0.c w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c\
71          w_log.c w_log10.c w_pow.c w_remainder.c w_scalb.c w_sinh.c\
72          w_sqrt.c fpmacros.c nan.c s_ceilf.c s_floorf.c
73 FL_MOBJ = acosf.o acoshf.o asinf.o asinhf.o atan2f.o atanf.o atanhf.o cbrtf.o \
74         ceilf.o copysignf.o cosf.o coshf.o erfcf.o erff.o exp2f.o expf.o \
75         expm1f.o fabsf.o fdimf.o floorf.o fmaf.o fmaxf.o fminf.o fmodf.o \
76         frexpf.o hypotf.o ilogbf.o ldexpf.o lgammaf.o log10f.o log1pf.o \
77         log2f.o logbf.o logf.o lrintf.o lroundf.o modff.o nearbyintf.o \
78         nextafterf.o powf.o remainderf.o remquof.o rintf.o roundf.o \
79         scalblnf.o scalbnf.o sinf.o sinhf.o sqrtf.o tanf.o tanhf.o \
80         tgammaf.o truncf.o
81 else
82 # This list of math functions was taken from POSIX/IEEE 1003.1b-1993
83 CSRC =   w_acos.c w_asin.c s_atan.c w_atan2.c s_ceil.c s_cos.c \
84          w_cosh.c w_exp.c s_fabs.c s_floor.c w_fmod.c s_frexp.c \
85          s_ldexp.c w_log.c w_log10.c s_modf.c w_pow.c s_sin.c \
86          w_sinh.c w_sqrt.c s_tan.c s_tanh.c
87 CSRC+=   s_expm1.c s_scalbn.c s_copysign.c e_acos.c e_asin.c e_atan2.c \
88          k_cos.c e_cosh.c e_exp.c e_fmod.c e_log.c e_log10.c e_pow.c \
89          k_sin.c e_sinh.c e_sqrt.c k_tan.c e_rem_pio2.c k_rem_pio2.c \
90          s_finite.c
91 # We'll add sqrtf to avoid problems with libstdc++
92 FL_MOBJ = sqrtf.o
93 endif
94
95 COBJS=$(patsubst %.c,%.o, $(CSRC))
96 OBJS=$(COBJS) $(FL_MOBJ)
97
98 ifeq ($(strip $(HAVE_SHARED)),y)
99 all: $(SO_LIB_NAME)
100 else
101 all: subdirs
102 endif
103
104 $(AR_LIB_NAME): $(OBJS)
105         $(INSTALL) -d $(TOPDIR)lib
106         $(RM) $(AR_LIB_NAME)
107         $(AR) $(ARFLAGS) $(AR_LIB_NAME) $(OBJS)
108
109 $(SO_LIB_NAME): $(AR_LIB_NAME) subdirs
110         $(RM) $(TOPDIR)lib/$(SO_FULL_NAME) $(SO_LIB_NAME).$(MAJOR_VERSION) $(SO_LIB_NAME)
111         $(LD) $(LDFLAGS) -soname=$(LIB_NAME).so.$(MAJOR_VERSION) \
112                 -o $(TOPDIR)lib/$(SO_FULL_NAME) --whole-archive $(AR_LIB_NAME) \
113                 --no-whole-archive $(TOPDIR)libc/misc/internals/interp.o \
114                 -L$(TOPDIR)lib -lc $(LDADD_LIBFLOAT) $(LIBGCC)
115         $(LN) -sf $(SO_FULL_NAME) $(SO_LIB_NAME).$(MAJOR_VERSION)
116         $(LN) -sf $(SO_FULL_NAME) $(SO_LIB_NAME)
117
118 $(COBJS): %.o : %.c
119         $(CC) $(CFLAGS) -c $< -o $@
120         $(STRIPTOOL) -x -R .note -R .comment $*.o
121
122 $(FL_MOBJ): $(FL_MSRC)
123         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
124         $(STRIPTOOL) -x -R .note -R .comment $*.o
125
126 tags:
127         ctags -R
128
129 clean: subdirs_clean
130         $(RM) *.o *~ core
131
132 subdirs: $(patsubst %, _dir_%, $(DIRS))
133 subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
134
135 $(patsubst %, _dir_%, $(DIRS)): $(AR_LIB_NAME)
136         $(MAKE) -C $(patsubst _dir_%, %, $@)
137
138 $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)): dummy
139         $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
140
141 .PHONY: dummy