9fa5f5fd96
Reorganize and unify libcrypto's interface so that the RSA implementation is chosen at runtime via dlopen(). This is a checkpoint and may require more tweaks still.
21 lines
414 B
Makefile
21 lines
414 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= libcipher
|
|
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
|
|
SUBDIR+=libtelnet
|
|
.endif
|
|
.if !defined(NO_OPENSSL)
|
|
SUBDIR+=libcrypto librsaglue libssl
|
|
.if exists(${.CURDIR}/../../crypto/openssl/rsaref)
|
|
SUBDIR+=librsausa
|
|
.endif
|
|
.if exists(${.CURDIR}/../../crypto/openssl/crypto/rsa/rsa_eay.c)
|
|
SUBDIR+=librsaintl
|
|
.endif
|
|
.endif
|
|
.if !defined(NO_OPENSSH)
|
|
SUBDIR+=libssh
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|