2001-09-10 06:59:09 +04:00
|
|
|
# $NetBSD: srcs.inc,v 1.10 2001/09/10 02:59:09 thorpej Exp $
|
2000-07-31 21:04:05 +04:00
|
|
|
|
2001-04-12 11:48:03 +04:00
|
|
|
CRYPTOINCS= \
|
|
|
|
asn1.inc bf.inc bio.inc bn.inc buffer.inc cast.inc comp.inc conf.inc \
|
|
|
|
crypto.inc des.inc dh.inc dsa.inc dso.inc err.inc evp.inc hmac.inc \
|
|
|
|
lhash.inc md2.inc md4.inc md5.inc mdc2.inc objects.inc pem.inc \
|
|
|
|
pkcs12.inc pkcs7.inc rand.inc rc2.inc rc4.inc ripemd.inc rsa.inc \
|
|
|
|
sha.inc stack.inc txt_db.inc x509.inc x509v3.inc
|
2000-06-23 10:01:10 +04:00
|
|
|
|
2000-09-30 16:21:51 +04:00
|
|
|
# patented algorithms - see ../libcrypto_*
|
2000-07-31 21:04:05 +04:00
|
|
|
CRYPTOINCS+= idea.inc
|
|
|
|
CRYPTOINCS+= rc5.inc
|
|
|
|
|
2000-10-04 09:58:15 +04:00
|
|
|
CRYPTOINCS+= man.inc
|
|
|
|
|
2000-07-31 21:04:05 +04:00
|
|
|
.for cryptoinc in ${CRYPTOINCS}
|
2001-09-10 06:59:09 +04:00
|
|
|
.if exists(${.CURDIR}/arch/${MACHINE_CPU}/${cryptoinc})
|
|
|
|
.include "${.CURDIR}/arch/${MACHINE_CPU}/${cryptoinc}"
|
2000-07-31 21:04:05 +04:00
|
|
|
.else
|
|
|
|
.include "${cryptoinc}"
|
2000-06-23 10:01:10 +04:00
|
|
|
.endif
|
2000-07-31 21:04:05 +04:00
|
|
|
.endfor
|