Home | History | Annotate | Line # | Download | only in complex
Makefile.inc revision 1.7
      1  1.7    martin # $NetBSD: Makefile.inc,v 1.7 2014/10/10 08:19:37 martin Exp $
      2  1.1  drochner 
      3  1.1  drochner .PATH: ${.CURDIR}/complex
      4  1.1  drochner 
      5  1.5  christos COMPLEX_SRCS = cabs.c cacos.c cacosh.c carg.c casin.c casinh.c catan.c \
      6  1.5  christos 	ccos.c ccosh.c cephes_subr.c cexp.c clog.c conj.c cpow.c cproj.c\
      7  1.7    martin 	cimag.c creal.c csin.c csinh.c csqrt.c ctan.c ctanh.c catanh.c
      8  1.1  drochner 
      9  1.5  christos .for i in ${COMPLEX_SRCS}
     10  1.5  christos SRCS+=	$i ${i:S/.c/f.c/} ${i:S/.c/l.c/}
     11  1.5  christos MAN+= ${i:Ncephes_*:S/.c/.3/}
     12  1.5  christos MLINKS+= ${i:Ncephes_*:S/.c/.3/} ${i:Ncephes_*:S/.c/f.3/}
     13  1.5  christos MLINKS+= ${i:Ncephes_*:S/.c/.3/} ${i:Ncephes_*:S/.c/l.3/}
     14  1.5  christos .endfor
     15