Deleted Added
full compact
Makefile (121419) Makefile (121497)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 121419 2003-10-23 08:23:51Z des $
2# $FreeBSD: head/lib/msun/Makefile 121497 2003-10-25 09:32:18Z des $
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.

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

92 w_drem.c w_dremf.c w_exp.c w_expf.c w_fmod.c w_fmodf.c w_gamma.c \
93 w_gamma_r.c w_gammaf.c w_gammaf_r.c w_hypot.c w_hypotf.c w_j0.c \
94 w_j0f.c w_j1.c w_j1f.c w_jn.c w_jnf.c w_lgamma.c w_lgamma_r.c \
95 w_lgammaf.c w_lgammaf_r.c w_log.c w_log10.c w_log10f.c w_logf.c \
96 w_pow.c w_powf.c w_remainder.c w_remainderf.c w_scalb.c w_scalbf.c \
97 w_sinh.c w_sinhf.c w_sqrt.c w_sqrtf.c \
98 w_y0.c w_y0f.c w_y1.c w_y1f.c w_yn.c w_ynf.c
99
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.

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

92 w_drem.c w_dremf.c w_exp.c w_expf.c w_fmod.c w_fmodf.c w_gamma.c \
93 w_gamma_r.c w_gammaf.c w_gammaf_r.c w_hypot.c w_hypotf.c w_j0.c \
94 w_j0f.c w_j1.c w_j1f.c w_jn.c w_jnf.c w_lgamma.c w_lgamma_r.c \
95 w_lgammaf.c w_lgammaf_r.c w_log.c w_log10.c w_log10f.c w_logf.c \
96 w_pow.c w_powf.c w_remainder.c w_remainderf.c w_scalb.c w_scalbf.c \
97 w_sinh.c w_sinhf.c w_sqrt.c w_sqrtf.c \
98 w_y0.c w_y0f.c w_y1.c w_y1f.c w_yn.c w_ynf.c
99
100# Location of fpmath.h and _fpmath.h
101LIBCDIR= ${.CURDIR}/../libc
102CFLAGS+= -I${LIBCDIR}/include -I${LIBCDIR}/${MACHINE_ARCH}
103
104# C99 long double functions
105COMMON_SRCS+= s_fabsl.c
106
100# FreeBSD's C library supplies these functions:
101#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
102
107# FreeBSD's C library supplies these functions:
108#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
109
103COMMON_SRCS+= fabsl.c
104
105# Exclude the generic versions of what we provide in the MD area.
106.if defined(ARCH_SRCS)
107.PATH: ${.CURDIR}/${ARCH}
108.for i in ${ARCH_SRCS}
109COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}
110.endfor
111.endif
112

--- 45 unchanged lines hidden ---
110# Exclude the generic versions of what we provide in the MD area.
111.if defined(ARCH_SRCS)
112.PATH: ${.CURDIR}/${ARCH}
113.for i in ${ARCH_SRCS}
114COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}
115.endfor
116.endif
117

--- 45 unchanged lines hidden ---