Deleted Added
full compact
Makefile (2117) Makefile (2122)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $Id: Makefile,v 1.22 1994/08/10 20:30:00 jtc Exp $
2# $Id: Makefile,v 1.1.1.1 1994/08/19 09:39:41 jkh Exp $
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.

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

38# default standard
39# CFLAGS = ... Multi-standard supported
40# libm with IEEE as the
41# default standard
42#
43
44# Enable if you have a i387 (or i486 or Pentium)
45.if defined(HAVE_FPU)
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.

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

38# default standard
39# CFLAGS = ... Multi-standard supported
40# libm with IEEE as the
41# default standard
42#
43
44# Enable if you have a i387 (or i486 or Pentium)
45.if defined(HAVE_FPU)
46.PATH: ${.CURDIR}/arch/i387
46.PATH: ${.CURDIR}/i387
47ARCH_SRCS = e_acos.S e_asin.S e_atan2.S e_exp.S e_fmod.S e_log.S e_log10.S \
48 e_remainder.S e_scalb.S e_sqrt.S s_atan.S s_ceil.S s_copysign.S \
49 s_cos.S s_finite.S s_floor.S s_ilogb.S s_log1p.S s_logb.S \
50 s_rint.S s_scalbn.S s_significand.S s_sin.S s_tan.S
51.endif
52
53.PATH: ${.CURDIR}/man
54.PATH: ${.CURDIR}/src

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

85 w_sinh.c w_sinhf.c w_sqrt.c w_sqrtf.c
86
87# FreeBSD's C library supplies these functions:
88#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
89
90
91SRCS=${COMMON_SRCS} ${ARCH_SRCS}
92
47ARCH_SRCS = e_acos.S e_asin.S e_atan2.S e_exp.S e_fmod.S e_log.S e_log10.S \
48 e_remainder.S e_scalb.S e_sqrt.S s_atan.S s_ceil.S s_copysign.S \
49 s_cos.S s_finite.S s_floor.S s_ilogb.S s_log1p.S s_logb.S \
50 s_rint.S s_scalbn.S s_significand.S s_sin.S s_tan.S
51.endif
52
53.PATH: ${.CURDIR}/man
54.PATH: ${.CURDIR}/src

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

85 w_sinh.c w_sinhf.c w_sqrt.c w_sqrtf.c
86
87# FreeBSD's C library supplies these functions:
88#COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c
89
90
91SRCS=${COMMON_SRCS} ${ARCH_SRCS}
92
93# Substitute common sources with any arch specific sources
94MANSRC= ${.CURDIR}/man
95
96MAN3+= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \
97 cos.3 cosh.3 erf.3 exp.3 fabs.3 floor.3 fmod.3 hypot.3 ieee.3 \
98 ieee_test.3 j0.3 lgamma.3 math.3 rint.3 sin.3 sinh.3 sqrt.3 \
99 tan.3 tanh.3
100
101MLINKS+=erf.3 erfc.3

--- 12 unchanged lines hidden ---
93MANSRC= ${.CURDIR}/man
94
95MAN3+= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \
96 cos.3 cosh.3 erf.3 exp.3 fabs.3 floor.3 fmod.3 hypot.3 ieee.3 \
97 ieee_test.3 j0.3 lgamma.3 math.3 rint.3 sin.3 sinh.3 sqrt.3 \
98 tan.3 tanh.3
99
100MLINKS+=erf.3 erfc.3

--- 12 unchanged lines hidden ---