diff options
author | markm <markm@FreeBSD.org> | 1995-08-06 11:05:31 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1995-08-06 11:05:31 +0000 |
commit | e7b61cf7cbb8a3a35876c3ed3b866d9cbb19ecdf (patch) | |
tree | 08aa5b1ff035b079ee8083d839752a7a0f91dcdb /usr.bin | |
parent | d46fbec2467e061d3b824c77be9677a8bb828053 (diff) | |
download | FreeBSD-src-e7b61cf7cbb8a3a35876c3ed3b866d9cbb19ecdf.zip FreeBSD-src-e7b61cf7cbb8a3a35876c3ed3b866d9cbb19ecdf.tar.gz |
Only build telnet if secure telnet is not going to be built.
Reviewed by: rgrimes
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 0cc4f75..c848aec 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 -# $Id: Makefile,v 1.56 1995/07/08 22:24:20 ats Exp $ +# $Id: Makefile,v 1.57 1995/08/05 23:28:21 ache Exp $ # XXX MISSING: deroff diction graph learn plot # spell spline struct units xsend @@ -20,12 +20,16 @@ SUBDIR= apply ar at banner basename biff cal calendar \ printf quota ranlib rdist renice rev rlogin rpcgen \ rpcinfo rs rsh rup ruptime rusers rwall \ rwho script sed sgmlfmt sgmls shar showmount size soelim split \ - strings strip su symorder talk tconv tcopy tee telnet tftp time \ + strings strip su symorder talk tconv tcopy tee tftp time \ timedef tip tn3270 touch tput tr true tset tsort tty ul uname \ unexpand unifdef uniq unvis users uudecode uuencode vacation \ vgrind vi vis w wall wc what whereis which who whois window \ write xargs xinstall xstr yacc yes ypcat ypmatch ypwhich +.if !exists(../secure) || defined(NOSECURE) +SUBDIR+=telnet +.endif + # Cmp, look and tail all use mmap, so new-VM only. # F77 and pascal are VAX/Tahoe only. .if make(clean) || make(cleandir) |