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

jumps all over kerberised telnet otherwise.
This commit is contained in:
Mark Murray 1999-10-12 19:48:05 +00:00
parent c3737d34ba
commit 1a19815c14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52167
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>