Deleted Added
full compact
Makefile (157196) Makefile (165855)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 157196 2006-03-27 23:59:45Z deischen $
2# $FreeBSD: head/lib/msun/Makefile 165855 2007-01-07 07:54:21Z 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.

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

64SYM_MAPS+= ${.CURDIR}/Symbol.map
65
66.if defined(SYMVER_ENABLED)
67VERSION_DEF= ${LIBCDIR}/Versions.def
68SYMBOL_MAPS= ${SYM_MAPS}
69.endif
70
71# C99 long double 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.

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

64SYM_MAPS+= ${.CURDIR}/Symbol.map
65
66.if defined(SYMVER_ENABLED)
67VERSION_DEF= ${LIBCDIR}/Versions.def
68SYMBOL_MAPS= ${SYM_MAPS}
69.endif
70
71# C99 long double functions
72COMMON_SRCS+= s_copysignl.c s_fabsl.c
72COMMON_SRCS+= s_copysignl.c s_fabsl.c s_modfl.c
73.if ${LDBL_PREC} != 53
74# If long double != double use these; otherwise, we alias the double versions.
75COMMON_SRCS+= s_fmal.c s_frexpl.c s_nextafterl.c s_nexttoward.c s_scalbnl.c
76.endif
77
78# C99 complex functions
79COMMON_SRCS+= s_cimag.c s_cimagf.c s_cimagl.c s_conj.c s_conjf.c s_conjl.c \
80 s_creal.c s_crealf.c s_creall.c

--- 84 unchanged lines hidden ---
73.if ${LDBL_PREC} != 53
74# If long double != double use these; otherwise, we alias the double versions.
75COMMON_SRCS+= s_fmal.c s_frexpl.c s_nextafterl.c s_nexttoward.c s_scalbnl.c
76.endif
77
78# C99 complex functions
79COMMON_SRCS+= s_cimag.c s_cimagf.c s_cimagl.c s_conj.c s_conjf.c s_conjl.c \
80 s_creal.c s_crealf.c s_creall.c

--- 84 unchanged lines hidden ---