Deleted Added
full compact
Makefile (219576) Makefile (226458)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 219576 2011-03-12 19:37:35Z kargl $
2# $FreeBSD: head/lib/msun/Makefile 226458 2011-10-17 05:41:03Z das $
3#
4# ====================================================
5# Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6#
7# Developed at SunPro, a Sun Microsystems, Inc. business.
8# Permission to use, copy, modify, and distribute this
9# software is freely granted, provided that this notice
10# is preserved.

--- 85 unchanged lines hidden (view full) ---

96 s_atanl.c s_cbrtl.c s_ceill.c s_cosl.c s_cprojl.c \
97 s_csqrtl.c s_exp2l.c s_floorl.c s_fmal.c \
98 s_frexpl.c s_logbl.c s_nanl.c s_nextafterl.c s_nexttoward.c \
99 s_remquol.c s_rintl.c s_scalbnl.c \
100 s_sinl.c s_tanl.c s_truncl.c w_cabsl.c
101.endif
102
103# C99 complex functions
3#
4# ====================================================
5# Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6#
7# Developed at SunPro, a Sun Microsystems, Inc. business.
8# Permission to use, copy, modify, and distribute this
9# software is freely granted, provided that this notice
10# is preserved.

--- 85 unchanged lines hidden (view full) ---

96 s_atanl.c s_cbrtl.c s_ceill.c s_cosl.c s_cprojl.c \
97 s_csqrtl.c s_exp2l.c s_floorl.c s_fmal.c \
98 s_frexpl.c s_logbl.c s_nanl.c s_nextafterl.c s_nexttoward.c \
99 s_remquol.c s_rintl.c s_scalbnl.c \
100 s_sinl.c s_tanl.c s_truncl.c w_cabsl.c
101.endif
102
103# C99 complex functions
104COMMON_SRCS+= s_cexp.c s_cexpf.c s_cimag.c s_cimagf.c s_cimagl.c \
104COMMON_SRCS+= s_ccosh.c s_ccoshf.c s_cexp.c s_cexpf.c \
105 s_cimag.c s_cimagf.c s_cimagl.c \
105 s_conj.c s_conjf.c s_conjl.c \
106 s_conj.c s_conjf.c s_conjl.c \
106 s_cproj.c s_cprojf.c s_creal.c s_crealf.c s_creall.c
107 s_cproj.c s_cprojf.c s_creal.c s_crealf.c s_creall.c \
108 s_csinh.c s_csinhf.c s_ctanh.c s_ctanhf.c
107
108# FreeBSD's C library supplies these functions:
109#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
110
111# Exclude the generic versions of what we provide in the MD area.
112.if defined(ARCH_SRCS)
113.for i in ${ARCH_SRCS}
114COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}

--- 5 unchanged lines hidden (view full) ---

120XRINT_CFLAGS= -fno-builtin-rint -fno-builtin-rintf -fno-builtin-rintl
121CFLAGS+= ${XRINT_CFLAGS}
122XRINT_CFLAGS:= ${.IMPSRC:M*/s_nearbyint.c:C/^.+$/${XRINT_CFLAGS}/:C/^$//}
123
124SRCS= ${COMMON_SRCS} ${ARCH_SRCS}
125
126INCS= fenv.h math.h
127
109
110# FreeBSD's C library supplies these functions:
111#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
112
113# Exclude the generic versions of what we provide in the MD area.
114.if defined(ARCH_SRCS)
115.for i in ${ARCH_SRCS}
116COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}

--- 5 unchanged lines hidden (view full) ---

122XRINT_CFLAGS= -fno-builtin-rint -fno-builtin-rintf -fno-builtin-rintl
123CFLAGS+= ${XRINT_CFLAGS}
124XRINT_CFLAGS:= ${.IMPSRC:M*/s_nearbyint.c:C/^.+$/${XRINT_CFLAGS}/:C/^$//}
125
126SRCS= ${COMMON_SRCS} ${ARCH_SRCS}
127
128INCS= fenv.h math.h
129
128MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 cexp.3 \
130MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 \
131 ceil.3 ccos.3 ccosh.3 cexp.3 \
129 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
130 feclearexcept.3 feenableexcept.3 fegetenv.3 \
131 fegetround.3 fenv.3 floor.3 \
132 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
133 lgamma.3 log.3 lrint.3 lround.3 math.3 nan.3 \
134 nextafter.3 remainder.3 rint.3 \
135 round.3 scalbn.3 signbit.3 sin.3 sinh.3 sqrt.3 tan.3 tanh.3 trunc.3 \
136 complex.3
137
138MLINKS+=acos.3 acosf.3 acos.3 acosl.3
139MLINKS+=acosh.3 acoshf.3
140MLINKS+=asin.3 asinf.3 asin.3 asinl.3
141MLINKS+=asinh.3 asinhf.3
142MLINKS+=atan.3 atanf.3 atan.3 atanl.3
143MLINKS+=atanh.3 atanhf.3
144MLINKS+=atan2.3 atan2f.3 atan2.3 atan2l.3 \
145 atan2.3 carg.3 atan2.3 cargf.3 atan2.3 cargl.3
132 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
133 feclearexcept.3 feenableexcept.3 fegetenv.3 \
134 fegetround.3 fenv.3 floor.3 \
135 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
136 lgamma.3 log.3 lrint.3 lround.3 math.3 nan.3 \
137 nextafter.3 remainder.3 rint.3 \
138 round.3 scalbn.3 signbit.3 sin.3 sinh.3 sqrt.3 tan.3 tanh.3 trunc.3 \
139 complex.3
140
141MLINKS+=acos.3 acosf.3 acos.3 acosl.3
142MLINKS+=acosh.3 acoshf.3
143MLINKS+=asin.3 asinf.3 asin.3 asinl.3
144MLINKS+=asinh.3 asinhf.3
145MLINKS+=atan.3 atanf.3 atan.3 atanl.3
146MLINKS+=atanh.3 atanhf.3
147MLINKS+=atan2.3 atan2f.3 atan2.3 atan2l.3 \
148 atan2.3 carg.3 atan2.3 cargf.3 atan2.3 cargl.3
149MLINKS+=ccos.3 ccosf.3 ccos.3 csin.3 ccos.3 csinf.3 ccos.3 ctan.3 ccos.3 ctanf.3
150MLINKS+=ccosh.3 ccoshf.3 ccosh.3 csinh.3 ccosh.3 csinhf.3 \
151 ccosh.3 ctanh.3 ccosh.3 ctanhf.3
146MLINKS+=ceil.3 ceilf.3 ceil.3 ceill.3
147MLINKS+=cexp.3 cexpf.3
148MLINKS+=cimag.3 cimagf.3 cimag.3 cimagl.3 \
149 cimag.3 conj.3 cimag.3 conjf.3 cimag.3 conjl.3 \
150 cimag.3 cproj.3 cimag.3 cprojf.3 cimag.3 cprojl.3 \
151 cimag.3 creal.3 cimag.3 crealf.3 cimag.3 creall.3
152MLINKS+=copysign.3 copysignf.3 copysign.3 copysignl.3
153MLINKS+=cos.3 cosf.3 cos.3 cosl.3

--- 53 unchanged lines hidden ---
152MLINKS+=ceil.3 ceilf.3 ceil.3 ceill.3
153MLINKS+=cexp.3 cexpf.3
154MLINKS+=cimag.3 cimagf.3 cimag.3 cimagl.3 \
155 cimag.3 conj.3 cimag.3 conjf.3 cimag.3 conjl.3 \
156 cimag.3 cproj.3 cimag.3 cprojf.3 cimag.3 cprojl.3 \
157 cimag.3 creal.3 cimag.3 crealf.3 cimag.3 creall.3
158MLINKS+=copysign.3 copysignf.3 copysign.3 copysignl.3
159MLINKS+=cos.3 cosf.3 cos.3 cosl.3

--- 53 unchanged lines hidden ---