Deleted Added
full compact
Makefile (11682) Makefile (13987)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $Id: Makefile,v 1.6 1995/10/02 20:02:05 wollman Exp $
2# $Id: Makefile,v 1.7 1995/10/22 19:16:01 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.

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

97
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
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.

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

97
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
106MLINKS+=exp.3 expm1.3 exp.3 log.3 exp.3 log10.3 exp.3 log1p.3 exp.3 pow.3
107MLINKS+=hypot.3 cabs.3
108MLINKS+=ieee.3 copysign.3 ieee.3 finite.3 ieee.3 ilogb.3 \
109 ieee.3 nextafter.3 ieee.3 remainder.3 ieee.3 scalbn.3
110MLINKS+=ieee_test.3 logb.3
111MLINKS+=ieee_test.3 scalb.3
112MLINKS+=ieee_test.3 significand.3
113MLINKS+=j0.3 j1.3 j0.3 jn.3 j0.3 y0.3 j0.3 y1.3 j0.3 yn.3
114MLINKS+=lgamma.3 gamma.3
115MLINKS+=sqrt.3 cbrt.3
105MLINKS+=acos.3 acosf.3
106MLINKS+=acosh.3 acoshf.3
107MLINKS+=asin.3 asinf.3
108MLINKS+=asinh.3 asinhf.3
109MLINKS+=atan.3 atanf.3
110MLINKS+=atanh.3 atanhf.3
111MLINKS+=atan2.3 atan2f.3
112MLINKS+=ceil.3 ceilf.3
113MLINKS+=cos.3 cosf.3
114MLINKS+=cosh.3 coshf.3
115MLINKS+=erf.3 erfc.3 erf.3 erff.3 erf.3 erfcf.3
116MLINKS+=exp.3 expm1.3 exp.3 log.3 exp.3 log10.3 exp.3 log1p.3 exp.3 pow.3 \
117 exp.3 expf.3 exp.3 exp2.3 exp.3 exp2f.3 exp.3 exp10.3 exp.3 exp10f.3 \
118 exp.3 expm1f.3 exp.3 logf.3 exp.3 log2.3 exp.3 log2f.3 exp.3 powf.3 \
119 exp.3 log10f.3 exp.3 log1pf.3
120MLINKS+=fabs.3 fabsf.3
121MLINKS+=floor.3 floorf.3
122MLINKS+=fmod.3 fmodf.3
123MLINKS+=hypot.3 cabs.3 hypot.3 cabsf.3 hypot.3 hypotf.3
124MLINKS+=ieee.3 copysign.3 ieee.3 copysignf.3 ieee.3 finite.3 ieee.3 finitef.3 \
125 ieee.3 ilogb.3 ieee.3 ilogbf.3 ieee.3 nextafter.3 ieee.3 nextafterf.3 \
126 ieee.3 remainder.3 ieee.3 remainderf.3 ieee.3 scalbn.3 ieee.3 scalbnf.3
127MLINKS+=ieee_test.3 logb.3 ieee_test.3 logbf.3
128MLINKS+=ieee_test.3 scalb.3 ieee_test.3 scalbf.3
129MLINKS+=ieee_test.3 significand.3 ieee_test.3 significandf.3
130MLINKS+=j0.3 j1.3 j0.3 jn.3 j0.3 y0.3 j0.3 y1.3 j0.3 y1f.3 j0.3 yn.3
131MLINKS+=j0.3 j0f.3 j0.3 j1f.3 j0.3 jnf.3 j0.3 y0f.3 j0.3 ynf.3
132MLINKS+=lgamma.3 gamma.3 lgamma.3 lgammaf.3 lgamma.3 gammaf.3
133MLINKS+=rint.3 rintf.3
134MLINKS+=sin.3 sinf.3
135MLIBKS+=sinh.3 sinhf.3
136MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 sqrtf.3
137MLINKS+=tan.3 tanf.3
138MLINKS+=tanh.3 tanhf.3
116
117# XXX we should have only one math.h, and a rule for installing .h's...
118beforeinstall:
119 @${ECHO} Installing new math.h
120 @(cd ${.CURDIR}/src; cmp -s math.h ${DESTDIR}/usr/include/math.h || \
121 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 math.h \
122 ${DESTDIR}/usr/include/math.h;)
123
124.include <bsd.lib.mk>
139
140# XXX we should have only one math.h, and a rule for installing .h's...
141beforeinstall:
142 @${ECHO} Installing new math.h
143 @(cd ${.CURDIR}/src; cmp -s math.h ${DESTDIR}/usr/include/math.h || \
144 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 math.h \
145 ${DESTDIR}/usr/include/math.h;)
146
147.include <bsd.lib.mk>