2003-04-27 06:16:52 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:39:25 +00:00
|
|
|
|
1999-11-30 02:18:13 +00:00
|
|
|
SUBDIR= atrun \
|
|
|
|
bootpd \
|
|
|
|
comsat \
|
|
|
|
fingerd \
|
|
|
|
ftpd \
|
|
|
|
getNAME \
|
|
|
|
getty \
|
2004-01-16 15:23:19 +00:00
|
|
|
${_lukemftpd} \
|
|
|
|
${_mail.local} \
|
1999-11-30 02:18:13 +00:00
|
|
|
makekey \
|
|
|
|
mknetid \
|
2004-01-16 15:23:19 +00:00
|
|
|
${_named-xfer} \
|
1999-11-30 02:18:13 +00:00
|
|
|
pppoed \
|
2003-01-02 20:44:41 +00:00
|
|
|
pt_chown \
|
1999-11-30 02:18:13 +00:00
|
|
|
rbootd \
|
|
|
|
revnetgroup \
|
|
|
|
rexecd \
|
|
|
|
rlogind \
|
|
|
|
rpc.rquotad \
|
2002-10-02 18:37:11 +00:00
|
|
|
rpc.rstatd \
|
1999-11-30 02:18:13 +00:00
|
|
|
rpc.rusersd \
|
|
|
|
rpc.rwalld \
|
|
|
|
rpc.sprayd \
|
|
|
|
rshd \
|
2004-01-16 15:23:19 +00:00
|
|
|
${_rtld-elf} \
|
2001-01-11 13:01:20 +00:00
|
|
|
save-entropy \
|
2004-01-16 15:23:19 +00:00
|
|
|
${_smrsh} \
|
1999-11-30 02:18:13 +00:00
|
|
|
talkd \
|
2002-08-13 14:03:40 +00:00
|
|
|
tcpd \
|
Very big makeover in the way telnet, telnetd and libtelnet are built.
Previously, there were two copies of telnet; a non-crypto version
that lived in the usual places, and a crypto version that lived in
crypto/telnet/. The latter was built in a broken manner somewhat akin
to other "contribified" sources. This meant that there were 4 telnets
competing with each other at build time - KerberosIV, Kerberos5,
plain-old-secure and base. KerberosIV is no longer in the running, but
the other three took it in turns to jump all over each other during a
"make buildworld".
As the crypto issue has been clarified, and crypto _calls_ are not
a problem, crypto/telnet has been repo-copied to contrib/telnet,
and with this commit, all telnets are now "contribified". The contrib
path was chosen to not destroy history in the repository, and differs
from other contrib/ entries in that it may be worked on as "normal"
BSD code. There is no dangerous crypto in these sources, only a
very weak system less strong than enigma(1).
Kerberos5 telnet and Secure telnet are now selected by using the usual
macros in /etc/make.conf, and the build process is unsurprising and
less treacherous.
2003-07-16 20:59:15 +00:00
|
|
|
telnetd \
|
1999-11-30 02:18:13 +00:00
|
|
|
tftpd \
|
|
|
|
ypxfr
|
|
|
|
|
2004-01-16 15:23:19 +00:00
|
|
|
.if !defined(NO_BIND)
|
|
|
|
_named-xfer= named-xfer
|
2003-05-08 06:37:12 +00:00
|
|
|
.endif
|
|
|
|
|
2004-01-16 15:23:19 +00:00
|
|
|
.if !defined(NOPIC)
|
|
|
|
_rtld-elf= rtld-elf
|
1999-11-30 02:18:13 +00:00
|
|
|
.endif
|
1995-08-06 11:20:35 +00:00
|
|
|
|
1998-08-04 15:32:43 +00:00
|
|
|
.if !defined(NO_SENDMAIL)
|
2004-01-16 15:23:19 +00:00
|
|
|
_mail.local= mail.local
|
|
|
|
_smrsh= smrsh
|
1998-08-04 15:32:43 +00:00
|
|
|
.endif
|
|
|
|
|
2002-11-12 17:31:12 +00:00
|
|
|
.if defined(WANT_LUKEMFTPD)
|
2004-01-16 15:23:19 +00:00
|
|
|
_lukemftpd= lukemftpd
|
2002-11-12 17:31:12 +00:00
|
|
|
.endif
|
|
|
|
|
1994-05-27 12:39:25 +00:00
|
|
|
.include <bsd.subdir.mk>
|