Dont build telenet if we are going for kerberised telnet; this just

jumps all over kerberised telnet otherwise.
This commit is contained in:
markm 1999-10-12 19:48:05 +00:00
parent 81ad9b5f6a
commit ca616e7d07
3 changed files with 11 additions and 6 deletions

View File

@ -1,6 +1,8 @@
# $FreeBSD$
SUBDIR= libcipher libdes libtelnet
SUBDIR= libcipher libdes
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR+=libtelnet
.endif
.include <bsd.subdir.mk>

View File

@ -1,6 +1,7 @@
# $FreeBSD$
# $FreeBSD$
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR= telnetd
.endif
.include <bsd.subdir.mk>

View File

@ -1,6 +1,8 @@
# $FreeBSD$
SUBDIR= bdes telnet
SUBDIR= bdes
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR+=telnet
.endif
.include <bsd.subdir.mk>