Deleted Added
full compact
Makefile (129040) Makefile (129864)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 129040 2004-05-07 18:56:31Z stefanf $
2# $FreeBSD: head/lib/msun/Makefile 129864 2004-05-30 09:21:56Z stefanf $
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.

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

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_copysignl.c s_fabsl.c
106
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.

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

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_copysignl.c s_fabsl.c
106
107# C99 complex functions
108COMMON_SRCS+= s_cimag.c s_cimagf.c s_cimagl.c s_conj.c s_conjf.c s_conjl.c \
109 s_creal.c s_crealf.c s_creall.c
110
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
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}

--- 49 unchanged lines hidden ---
111# FreeBSD's C library supplies these functions:
112#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
113
114# Exclude the generic versions of what we provide in the MD area.
115.if defined(ARCH_SRCS)
116.PATH: ${.CURDIR}/${ARCH}
117.for i in ${ARCH_SRCS}
118COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}

--- 49 unchanged lines hidden ---