Makefile (03a88e3de9c68182d21df94b1c8c7ced930dbd1f) Makefile (20adba8bc1beb125d5e5ed8f12e747ae79ca6a10)
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD$
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

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

146 s_cpow.c s_cpowf.c s_cpowl.c \
147 s_cproj.c s_cprojf.c s_creal.c s_crealf.c s_creall.c \
148 s_csinh.c s_csinhf.c s_ctanh.c s_ctanhf.c
149
150# FreeBSD's C library supplies these functions:
151#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
152
153# Exclude the generic versions of what we provide in the MD area.
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD$
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

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

146 s_cpow.c s_cpowf.c s_cpowl.c \
147 s_cproj.c s_cprojf.c s_creal.c s_crealf.c s_creall.c \
148 s_csinh.c s_csinhf.c s_ctanh.c s_ctanhf.c
149
150# FreeBSD's C library supplies these functions:
151#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
152
153# Exclude the generic versions of what we provide in the MD area.
154.if defined(ARCH_SRCS)
154.if defined(ARCH_SRCS) && ${MK_MACHDEP_OPTIMIZATIONS} != no
155.for i in ${ARCH_SRCS}
156COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}
157.endfor
158.endif
159
160SRCS= ${COMMON_SRCS} ${ARCH_SRCS}
161
162INCS+= fenv.h math.h

--- 115 unchanged lines hidden ---
155.for i in ${ARCH_SRCS}
156COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c}
157.endfor
158.endif
159
160SRCS= ${COMMON_SRCS} ${ARCH_SRCS}
161
162INCS+= fenv.h math.h

--- 115 unchanged lines hidden ---