freebsd-src/secure/usr.bin/Makefile
Mark Murray dbf104e68d Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extra
cleanups were necessary in release/Makefile, and the tinderbox code
was syntax checked, not run checked.
2003-05-05 07:58:44 +00:00

15 lines
241 B
Makefile

# $FreeBSD$
SUBDIR= bdes
.if !defined(NO_OPENSSL)
SUBDIR+=openssl
.if !defined(NO_OPENSSH)
SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan
.endif
.if defined(NO_KERBEROS)
SUBDIR+=telnet
.endif
.endif
.include <bsd.subdir.mk>