20 lines
383 B
Makefile
20 lines
383 B
Makefile
# $NetBSD: Makefile,v 1.6 2003/07/31 08:53:59 itojun Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR+=bf bn cast des dh dsa ec engine hmac lhash md2 md4 md5 rand rc2 \
|
|
rc4 ripemd rsa sha sha1 x509v3
|
|
#SUBDIR+=conf threads
|
|
|
|
.if ${MKCRYPTO_IDEA} != "no"
|
|
SUBDIR+=idea
|
|
.endif
|
|
.if ${MKCRYPTO_RC5} != "no"
|
|
SUBDIR+=rc5
|
|
.endif
|
|
.if ${MKCRYPTO_MDC2} != "no"
|
|
SUBDIR+=mdc2
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|