6c58990d47
If turned on no NIS support and related programs will be built. Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il> PR: bin/68303 No objections: des, gshapiro, nectar Reviewed by: ru Approved by: rwatson (mentor) MFC after: 2 weeks
60 lines
760 B
Makefile
60 lines
760 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
SUBDIR= atrun \
|
|
bootpd \
|
|
comsat \
|
|
fingerd \
|
|
ftpd \
|
|
${_ftp-proxy} \
|
|
getNAME \
|
|
getty \
|
|
${_lukemftpd} \
|
|
${_mail.local} \
|
|
makekey \
|
|
${_mknetid} \
|
|
pppoed \
|
|
pt_chown \
|
|
rbootd \
|
|
revnetgroup \
|
|
rexecd \
|
|
rlogind \
|
|
rpc.rquotad \
|
|
rpc.rstatd \
|
|
rpc.rusersd \
|
|
rpc.rwalld \
|
|
rpc.sprayd \
|
|
rshd \
|
|
${_rtld-elf} \
|
|
save-entropy \
|
|
${_smrsh} \
|
|
talkd \
|
|
tcpd \
|
|
telnetd \
|
|
tftpd \
|
|
${_ypxfr}
|
|
|
|
.if !defined(NO_NIS)
|
|
_mknetid= mknetid
|
|
_ypxfr= ypxfr
|
|
.endif
|
|
|
|
.if !defined(NO_PF)
|
|
_ftp-proxy= ftp-proxy
|
|
.endif
|
|
|
|
.if !defined(NOPIC)
|
|
_rtld-elf= rtld-elf
|
|
.endif
|
|
|
|
.if !defined(NO_SENDMAIL)
|
|
_mail.local= mail.local
|
|
_smrsh= smrsh
|
|
.endif
|
|
|
|
.if defined(WANT_LUKEMFTPD)
|
|
_lukemftpd= lukemftpd
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|