xref: /relibc/openlibm/src/Make.files (revision 00e0e7e5ee49b7bf85f235b7020c19339469eb13)
1$(CUR_SRCS) = \
2        e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c \
3        e_atan2.c e_atan2f.c e_atanh.c e_atanhf.c e_cosh.c e_coshf.c e_exp.c \
4        e_expf.c e_fmod.c e_fmodf.c e_gamma.c e_gamma_r.c e_gammaf.c \
5        e_gammaf_r.c e_hypot.c e_hypotf.c e_j0.c e_j0f.c e_j1.c e_j1f.c \
6        e_jn.c e_jnf.c e_lgamma.c e_lgamma_r.c e_lgammaf.c e_lgammaf_r.c \
7        e_log.c e_log10.c e_log10f.c e_log2.c e_log2f.c e_logf.c \
8        e_pow.c e_powf.c e_remainder.c e_remainderf.c e_scalb.c e_scalbf.c \
9        e_rem_pio2.c e_rem_pio2f.c \
10        e_sinh.c e_sinhf.c e_sqrt.c e_sqrtf.c \
11        k_cos.c k_exp.c k_expf.c k_rem_pio2.c k_sin.c k_tan.c \
12        k_cosf.c k_sinf.c k_tanf.c \
13        s_asinh.c s_asinhf.c s_atan.c s_atanf.c s_carg.c s_cargf.c s_cargl.c \
14        s_cbrt.c s_cbrtf.c s_ceil.c s_ceilf.c \
15        s_copysign.c s_copysignf.c s_cos.c s_cosf.c \
16        s_csqrt.c s_csqrtf.c s_erf.c s_erff.c \
17        s_exp2.c s_exp2f.c s_expm1.c s_expm1f.c s_fabs.c s_fabsf.c s_fdim.c \
18        s_finite.c s_finitef.c \
19        s_floor.c s_floorf.c s_fma.c s_fmaf.c \
20        s_fmax.c s_fmaxf.c s_fmaxl.c s_fmin.c \
21        s_fminf.c s_fminl.c s_fpclassify.c \
22        s_frexp.c s_frexpf.c s_ilogb.c s_ilogbf.c \
23        s_ilogbl.c s_isinf.c s_isfinite.c s_isnormal.c s_isnan.c \
24        s_llrint.c s_llrintf.c s_llround.c s_llroundf.c s_llroundl.c \
25        s_log1p.c s_log1pf.c s_logb.c s_logbf.c s_lrint.c s_lrintf.c \
26        s_lround.c s_lroundf.c s_lroundl.c s_modf.c s_modff.c \
27        s_nearbyint.c s_nextafter.c s_nextafterf.c \
28        s_nexttowardf.c s_remquo.c s_remquof.c \
29        s_rint.c s_rintf.c s_round.c s_roundf.c s_roundl.c \
30        s_scalbln.c s_scalbn.c s_scalbnf.c s_signbit.c \
31        s_signgam.c s_significand.c s_significandf.c s_sin.c s_sinf.c \
32        s_tan.c s_tanf.c s_tanh.c s_tanhf.c s_tgammaf.c s_trunc.c s_truncf.c \
33        w_cabs.c w_cabsf.c w_drem.c w_dremf.c
34
35ifneq ($(OS), WINNT)
36$(CUR_SRCS) += s_nan.c
37endif
38
39# C99 long double functions
40$(CUR_SRCS) +=	s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c
41
42# If long double != double use these; otherwise, we alias the double versions.
43$(CUR_SRCS) +=	e_acosl.c e_asinl.c e_atan2l.c e_fmodl.c \
44        e_hypotl.c e_remainderl.c e_sqrtl.c \
45        s_atanl.c s_ceill.c s_cosl.c s_cprojl.c \
46        s_csqrtl.c s_floorl.c s_fmal.c \
47        s_frexpl.c s_logbl.c s_nexttoward.c \
48        s_remquol.c \
49        s_sinl.c s_tanl.c s_truncl.c w_cabsl.c \
50        s_nextafterl.c s_rintl.c s_scalbnl.c
51#	s_cbrtl.c
52
53# C99 complex functions
54$(CUR_SRCS) +=	s_ccosh.c s_ccoshf.c s_cexp.c s_cexpf.c \
55        s_cimag.c s_cimagf.c s_cimagl.c \
56        s_conj.c s_conjf.c s_conjl.c \
57        s_cproj.c s_cprojf.c s_creal.c s_crealf.c s_creall.c \
58        s_csinh.c s_csinhf.c s_ctanh.c s_ctanhf.c
59