freebsd-dev/secure/lib/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
211 B
Makefile

# $FreeBSD$
SUBDIR= libcipher
.if !defined(NO_OPENSSL)
SUBDIR+=libcrypto libssl
.if !defined(NO_OPENSSH)
SUBDIR+=libssh
.endif
.if defined(NO_KERBEROS)
SUBDIR+=libtelnet
.endif
.endif
.include <bsd.subdir.mk>