1 # @(#)Makefile 5.1beta 93/09/24 2 # $Id: Makefile,v 1.11 1994/02/11 18:35:35 jtc 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. 11 # ==================================================== 12 # 13 # 14 15 # 16 # There are two options in making libm at fdlibm compile time: 17 # _IEEE_LIBM --- IEEE libm; smaller, and somewhat faster 18 # _MULTI_LIBM --- Support multi-standard at runtime by 19 # imposing wrapper functions defined in 20 # fdlibm.h: 21 # _IEEE_MODE -- IEEE 22 # _XOPEN_MODE -- X/OPEN 23 # _POSIX_MODE -- POSIX/ANSI 24 # _SVID3_MODE -- SVID 25 # 26 # Here is how to set up CFLAGS to create the desired libm at 27 # compile time: 28 # 29 # CFLAGS = -D_IEEE_LIBM ... IEEE libm (recommended) 30 # CFLAGS = -D_SVID3_MODE ... Multi-standard supported 31 # libm with SVID as the 32 # default standard 33 # CFLAGS = -D_XOPEN_MODE ... Multi-standard supported 34 # libm with XOPEN as the 35 # default standard 36 # CFLAGS = -D_POSIX_MODE ... Multi-standard supported 37 # libm with POSIX as the 38 # default standard 39 # CFLAGS = ... Multi-standard supported 40 # libm with IEEE as the 41 # default standard 42 # 43 44 .if (${MACHINE_ARCH} == "i386") 45 # Uncomment the following lines if you have a i387 (or i486 or Pentium) 46 #.PATH: ${.CURDIR}/arch/i387 47 .elif (${MACHINE_ARCH} == "m68k") 48 #.PATH: ${.CURDIR}/arch/mc68881 49 .endif 50 51 .PATH: ${.CURDIR}/man 52 .PATH: ${.CURDIR}/src 53 54 55 CFLAGS+= -D_MULTI_LIBM -D_POSIX_MODE 56 NOPIC= 57 58 LIB= m 59 OBJS = k_standard.o k_rem_pio2.o k_cos.o k_sin.o k_tan.o \ 60 e_acos.o e_acosh.o e_asin.o e_atan2.o e_atanh.o e_cosh.o e_exp.o \ 61 e_fmod.o e_gamma.o e_gamma_r.o e_hypot.o e_j0.o e_j1.o e_jn.o \ 62 e_lgamma.o e_lgamma_r.o e_log.o e_log10.o e_pow.o e_rem_pio2.o \ 63 e_remainder.o e_scalb.o e_sinh.o e_sqrt.o \ 64 w_acos.o w_acosh.o w_asin.o w_atan2.o \ 65 w_atanh.o w_cosh.o w_exp.o w_fmod.o \ 66 w_gamma.o w_gamma_r.o w_hypot.o w_j0.o \ 67 w_j1.o w_jn.o w_lgamma.o w_lgamma_r.o \ 68 w_log.o w_log10.o w_pow.o w_remainder.o \ 69 w_scalb.o w_sinh.o w_sqrt.o \ 70 s_asinh.o s_atan.o s_cbrt.o s_ceil.o s_copysign.o \ 71 s_cos.o s_erf.o s_expm1.o s_fabs.o s_finite.o s_floor.o \ 72 s_frexp.o s_ilogb.o s_isnan.o s_ldexp.o s_lib_version.o \ 73 s_log1p.o s_logb.o s_matherr.o s_modf.o s_nextafter.o \ 74 s_rint.o s_scalbn.o s_signgam.o s_significand.o s_sin.o \ 75 s_tan.o s_tanh.o 76 77 78 MAN3+= acos.0 acosh.0 asin.0 asinh.0 atan.0 atan2.0 atanh.0 ceil.0 \ 79 cos.0 cosh.0 erf.0 exp.0 fabs.0 floor.0 fmod.0 hypot.0 ieee.0 \ 80 infnan.0 j0.0 lgamma.0 math.0 rint.0 sin.0 sinh.0 sqrt.0 \ 81 tan.0 tanh.0 82 83 MLINKS+=erf.3 erfc.3 84 MLINKS+=exp.3 expm1.3 exp.3 log.3 exp.3 log10.3 exp.3 log1p.3 exp.3 pow.3 85 MLINKS+=hypot.3 cabs.3 86 MLINKS+=ieee.3 copysign.3 ieee.3 drem.3 ieee.3 finite.3 ieee.3 logb.3 \ 87 ieee.3 scalb.3 88 MLINKS+=j0.3 j1.3 j0.3 jn.3 j0.3 y0.3 j0.3 y1.3 j0.3 yn.3 89 MLINKS+=lgamma.3 gamma.3 90 MLINKS+=sqrt.3 cbrt.3 91 92 93 .include <bsd.lib.mk> 94