Deleted Added
full compact
Makefile (2574) Makefile (6953)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $Id: Makefile,v 1.2 1994/08/19 11:15:40 jkh Exp $
2# $Id: Makefile,v 1.3 1994/09/08 10:40:23 bde 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.

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

83 w_lgammaf.c w_lgammaf_r.c w_log.c w_log10.c w_log10f.c w_logf.c \
84 w_pow.c w_powf.c w_remainder.c w_remainderf.c w_scalb.c w_scalbf.c \
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
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.

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

83 w_lgammaf.c w_lgammaf_r.c w_log.c w_log10.c w_log10f.c w_logf.c \
84 w_pow.c w_powf.c w_remainder.c w_remainderf.c w_scalb.c w_scalbf.c \
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}
91SRCS=${COMMON_SRCS}
92
92
93# Substitute common sources with any arch specific sources
94.for i in ${ARCH_SRCS}
95 SRCS:=${SRCS:S/${i:S/.S/.c/}/$i/}
96.endfor
97
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

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

--- 19 unchanged lines hidden ---