Deleted Added
full compact
Makefile (211725) Makefile (211934)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 211725 2010-08-23 22:24:11Z imp $
2# $FreeBSD: head/lib/msun/Makefile 211934 2010-08-28 15:03:11Z nwhitehorn $
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.

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

70 s_rint.c s_rintf.c s_round.c s_roundf.c s_roundl.c \
71 s_scalbln.c s_scalbn.c s_scalbnf.c s_signbit.c \
72 s_signgam.c s_significand.c s_significandf.c s_sin.c s_sinf.c \
73 s_tan.c s_tanf.c s_tanh.c s_tanhf.c s_tgammaf.c s_trunc.c s_truncf.c \
74 w_cabs.c w_cabsf.c w_drem.c w_dremf.c
75
76# Location of fpmath.h and _fpmath.h
77LIBCDIR= ${.CURDIR}/../libc
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.

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

70 s_rint.c s_rintf.c s_round.c s_roundf.c s_roundl.c \
71 s_scalbln.c s_scalbn.c s_scalbnf.c s_signbit.c \
72 s_signgam.c s_significand.c s_significandf.c s_sin.c s_sinf.c \
73 s_tan.c s_tanf.c s_tanh.c s_tanhf.c s_tgammaf.c s_trunc.c s_truncf.c \
74 w_cabs.c w_cabsf.c w_drem.c w_dremf.c
75
76# Location of fpmath.h and _fpmath.h
77LIBCDIR= ${.CURDIR}/../libc
78.if exists(${LIBCDIR}/${MACHINE_ARCH})
79LIBC_ARCH=${MACHINE_ARCH}
80.else
81LIBC_ARCH=${MACHINE_CPUARCH}
82.endif
78CFLAGS+= -I${.CURDIR}/src -I${LIBCDIR}/include \
83CFLAGS+= -I${.CURDIR}/src -I${LIBCDIR}/include \
79 -I${LIBCDIR}/${MACHINE_CPUARCH}
84 -I${LIBCDIR}/${LIBC_ARCH}
80SYM_MAPS+= ${.CURDIR}/Symbol.map
81
82VERSION_DEF= ${LIBCDIR}/Versions.def
83SYMBOL_MAPS= ${SYM_MAPS}
84
85# C99 long double functions
86COMMON_SRCS+= s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c
87.if ${LDBL_PREC} != 53

--- 105 unchanged lines hidden ---
85SYM_MAPS+= ${.CURDIR}/Symbol.map
86
87VERSION_DEF= ${LIBCDIR}/Versions.def
88SYMBOL_MAPS= ${SYM_MAPS}
89
90# C99 long double functions
91COMMON_SRCS+= s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c
92.if ${LDBL_PREC} != 53

--- 105 unchanged lines hidden ---