Home | History | Annotate | Line # | Download | only in libm
Makefile revision 1.1
      1 #	@(#)Makefile	5.7.1.1 (Berkeley) 5/7/91
      2 #
      3 # ieee		- for most IEEE machines, we hope.
      4 # mc68881	- the, ahem, mc68881.
      5 # national	- for those ieee machines whose floating point implementation
      6 #		  has similar byte ordering as the NATIONAL 32016 with 32081.
      7 # i386		- i387 NPX, currently the same as "national"
      8 # tahoe		- for the tahoe double format.
      9 # vax		- for the vax D_floating format
     10 
     11 # Missing: erf.c, j0.c, j1.c, jn.c, lgamma.c
     12 
     13 LIB=	m
     14 CFLAGS+=-I${.CURDIR}/common_source
     15 
     16 HARDWARE=i387
     17 .PATH:	${.CURDIR}/common_source ${.CURDIR}/common \
     18 	${.CURDIR}/ieee
     19 CFLAGS+= -Dnational
     20 # common_source
     21 SRCS+=	acosh.c asincos.c asinh.c atan.c atanh.c cosh.c exp.c \
     22 	exp__E.c expm1.c floor.c fmod.c log.c \
     23 	log10.c log1p.c log__L.c pow.c sinh.c tanh.c
     24 # common
     25 SRCS+=	atan2.c sincos.c tan.c
     26 # ieee
     27 SRCS+=	cabs.c cbrt.c support.c
     28 
     29 MAN3+=	acos.0 acosh.0 asin.0 asinh.0 atan.0 atan2.0 atanh.0 ceil.0 \
     30 	cos.0 cosh.0 erf.0 exp.0 fabs.0 floor.0 fmod.0 hypot.0 ieee.0 \
     31 	infnan.0 j0.0 lgamma.0 math.0 rint.0 sin.0 sinh.0 sqrt.0 \
     32 	tan.0 tanh.0
     33 
     34 MLINKS+=erf.3 erfc.3
     35 MLINKS+=exp.3 expm1.3 exp.3 log.3 exp.3 log10.3 exp.3 log1p.3 exp.3 pow.3
     36 MLINKS+=hypot.3 cabs.3
     37 MLINKS+=ieee.3 copysign.3 ieee.3 drem.3 ieee.3 finite.3 ieee.3 logb.3 \
     38 	ieee.3 scalb.3
     39 MLINKS+=j0.3 j1.3 j0.3 jn.3 j0.3 y0.3 j0.3 y1.3 j0.3 yn.3
     40 MLINKS+=lgamma.3 gamma.3
     41 
     42 # can't use the standard mkdep, because there are some .s files that
     43 # are using '#' as a comment indicator and cpp thinks it's an undefined
     44 # control.
     45 
     46 depend: .depend
     47 .depend: ${SRCS}
     48 	mkdep ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c}
     49 
     50 .include <bsd.lib.mk>
     51 
     52 .s.o:
     53 	${AS} -o ${.TARGET} ${.IMPSRC}
     54 	@${LD} -x -r ${.TARGET}
     55 	@mv a.out ${.TARGET}
     56 
     57 .s.po:
     58 	sed -f ${.CURDIR}/${HARDWARE}/mcount.sed ${.IMPSRC} | \
     59 	    ${AS} -o ${.TARGET}
     60 	@${LD} -X -r ${.TARGET}
     61 	@mv a.out ${.TARGET}
     62