freebsd-dev/secure/lib/Makefile
Mark Murray c9f2d5f483 Build everything properly. This means:
o Don't b uild libdes.

o Crypto is now housed in libcrypto (with a compatability symlink to
  libdes)

o RSA may depend on RSAREF at your locale.

o OpenSSH is now a part of the base system.
2000-02-24 18:59:34 +00:00

18 lines
302 B
Makefile

# $FreeBSD$
SUBDIR= libcipher
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR+=libtelnet
.endif
.if !defined(NO_OPENSSL)
SUBDIR+=libcrypto libssl
.if defined(RSAREF) && ${RSAREF} == YES
SUBDIR+=librsaglue
.endif
.endif
.if !defined(NO_OPENSSH)
SUBDIR+=libssh
.endif
.include <bsd.subdir.mk>