e1fe3dba5c
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
61 lines
775 B
Makefile
61 lines
775 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= atrun \
|
|
bootpd \
|
|
comsat \
|
|
fingerd \
|
|
ftpd \
|
|
${_ftp-proxy} \
|
|
getty \
|
|
lukemftpd \
|
|
${_mail.local} \
|
|
makekey \
|
|
${_mknetid} \
|
|
pppoed \
|
|
pt_chown \
|
|
rbootd \
|
|
revnetgroup \
|
|
${_rlogind} \
|
|
rpc.rquotad \
|
|
rpc.rstatd \
|
|
rpc.rusersd \
|
|
rpc.rwalld \
|
|
rpc.sprayd \
|
|
${_rshd} \
|
|
${_rtld-elf} \
|
|
save-entropy \
|
|
${_smrsh} \
|
|
talkd \
|
|
tcpd \
|
|
telnetd \
|
|
tftpd \
|
|
${_ypxfr}
|
|
|
|
.if ${MK_NIS} != "no"
|
|
_mknetid= mknetid
|
|
_ypxfr= ypxfr
|
|
.endif
|
|
|
|
.if ${MK_PF} != "no"
|
|
_ftp-proxy= ftp-proxy
|
|
.endif
|
|
|
|
.if !defined(NO_PIC)
|
|
_rtld-elf= rtld-elf
|
|
.endif
|
|
|
|
.if ${MK_RCMDS} != "no"
|
|
_rlogind= rlogind
|
|
_rshd= rshd
|
|
.endif
|
|
|
|
.if ${MK_SENDMAIL} != "no"
|
|
_mail.local= mail.local
|
|
_smrsh= smrsh
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|