c9f2d5f483
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.
15 lines
277 B
Makefile
15 lines
277 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= bdes
|
|
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4) && !defined(MAKE_KERBEROS5)
|
|
SUBDIR+=telnet
|
|
.endif
|
|
.if !defined(NO_OPENSSL)
|
|
SUBDIR+=openssl
|
|
.endif
|
|
.if !defined(NO_OPENSSH)
|
|
SUBDIR+=scp ssh ssh-add ssh-agent ssh-keygen
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|