blob: 91b2c6a9b17b8c839666b790eba86e306ce8696f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile,v 1.2 2012/07/11 18:50:23 christos Exp $
.include "bsd.own.mk"
.if (${MKCRYPTO} != "no")
# OpenSSL libraries.
SUBDIR= libcrypto libdes
.if (${MKCRYPTO_RC5} != "no")
SUBDIR+= libcrypto_rc5
.endif # MKCRYPTO_RC5 != no
SUBDIR+= .WAIT libssl # depends on libcrypto
.endif # MKCRYPTO != no
.include <bsd.subdir.mk>
|