xref: /netbsd-src/crypto/external/bsd/openssl/lib/Makefile (revision c5e820cae412164fcbee52f470436200af5358ea)
1#	$NetBSD: Makefile,v 1.1 2009/07/19 23:30:42 christos Exp $
2
3.include "bsd.own.mk"
4
5.if (${MKCRYPTO} != "no")
6
7# OpenSSL libraries.
8SUBDIR= libcrypto libdes
9
10.if (${MKCRYPTO_IDEA} != "no")
11SUBDIR+= libcrypto_idea
12.endif	# MKCRYPTO_IDEA != no
13
14.if (${MKCRYPTO_MDC2} != "no")
15SUBDIR+= libcrypto_mdc2
16.endif	# MKCRYPTO_MDC2 != no
17
18.if (${MKCRYPTO_RC5} != "no")
19SUBDIR+= libcrypto_rc5
20.endif	# MKCRYPTO_RC5 != no
21
22SUBDIR+= .WAIT	libssl		# depends on libcrypto
23
24.endif	# MKCRYPTO != no
25
26.include <bsd.subdir.mk>
27