Home | History | Annotate | Line # | Download | only in complex
Makefile.inc revision 1.1
      1  1.1  drochner # $NetBSD: Makefile.inc,v 1.1 2008/02/20 09:55:38 drochner Exp $
      2  1.1  drochner 
      3  1.1  drochner .PATH: ${.CURDIR}/complex
      4  1.1  drochner 
      5  1.1  drochner COMMON_SRCS+= cabs.c cabsf.c carg.c cargf.c
      6  1.1  drochner COMMON_SRCS+= creal.c crealf.c cimag.c cimagf.c conj.c conjf.c
      7  1.1  drochner COMMON_SRCS+= csqrt.c cexp.c clog.c cpow.c
      8  1.1  drochner COMMON_SRCS+= cephes_subr.c csin.c ccos.c ctan.c csinh.c ccosh.c ctanh.c
      9  1.1  drochner COMMON_SRCS+= casin.c cacos.c catan.c casinh.c cacosh.c catanh.c
     10  1.1  drochner COMMON_SRCS+= csqrtf.c cexpf.c clogf.c cpowf.c
     11  1.1  drochner COMMON_SRCS+= cephes_subrf.c csinf.c ccosf.c ctanf.c csinhf.c ccoshf.c ctanhf.c
     12  1.1  drochner COMMON_SRCS+= casinf.c cacosf.c catanf.c casinhf.c cacoshf.c catanhf.c
     13  1.1  drochner 
     14  1.1  drochner MAN+= cabs.3 cacos.3 cacosh.3 carg.3 casin.3 casinh.3 catan.3 catanh.3
     15  1.1  drochner MAN+= ccos.3 ccosh.3 cexp.3 cimag.3 clog.3 conj.3 cpow.3 creal.3
     16  1.1  drochner MAN+= csin.3 csinh.3 csqrt.3 ctan.3 ctanh.3
     17  1.1  drochner 
     18  1.1  drochner MLINKS+= cabs.3 cabsf.3 cacos.3 cacosf.3 cacosh.3 cacoshf.3
     19  1.1  drochner MLINKS+= carg.3 cargf.3 casin.3 casinf.3 casinh.3 casinhf.3
     20  1.1  drochner MLINKS+= catan.3 catanf.3 catanh.3 catanhf.3 ccos.3 ccosf.3
     21  1.1  drochner MLINKS+= ccosh.3 ccoshf.3 cexp.3 cexpf.3 cimag.3 cimagf.3
     22  1.1  drochner MLINKS+= clog.3 clogf.3 conj.3 conjf.3 cpow.3 cpowf.3
     23  1.1  drochner MLINKS+= creal.3 crealf.3 csin.3 csinf.3 csinh.3 csinhf.3
     24  1.1  drochner MLINKS+= csqrt.3 csqrtf.3 ctan.3 ctanf.3 ctanh.3 ctanhf.3
     25