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