Deleted Added
full compact
Makefile (212531) Makefile (216137)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 212531 2010-09-13 04:23:23Z imp $
2# $FreeBSD: head/lib/msun/Makefile 216137 2010-12-03 00:05:49Z 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.

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

108
109# Exclude the generic versions of what we provide in the MD area.
110.if defined(ARCH_SRCS)
111.for i in ${ARCH_SRCS}
112COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}
113.endfor
114.endif
115
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.

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

108
109# Exclude the generic versions of what we provide in the MD area.
110.if defined(ARCH_SRCS)
111.for i in ${ARCH_SRCS}
112COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}
113.endfor
114.endif
115
116# Some files need certain gcc built-in functions to be disabled, since gcc's
117# model of the functions bogusly assumes -fno-trapping-math.
118XRINT_CFLAGS= -fno-builtin-rint -fno-builtin-rintf -fno-builtin-rintl
119CFLAGS+= ${XRINT_CFLAGS}
120XRINT_CFLAGS:= ${.IMPSRC:M*/s_nearbyint.c:C/^.+$/${XRINT_CFLAGS}/:C/^$//}
121
116SRCS= ${COMMON_SRCS} ${ARCH_SRCS}
117
118INCS= fenv.h math.h
119
120MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \
121 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
122 feclearexcept.3 feenableexcept.3 fegetenv.3 \
123 fegetround.3 fenv.3 floor.3 \

--- 72 unchanged lines hidden ---
122SRCS= ${COMMON_SRCS} ${ARCH_SRCS}
123
124INCS= fenv.h math.h
125
126MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \
127 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
128 feclearexcept.3 feenableexcept.3 fegetenv.3 \
129 fegetround.3 fenv.3 floor.3 \

--- 72 unchanged lines hidden ---