d10a8d6cb4
- Unify the conditional assignments section so that architectural exclusions come first, then options and !options, sorted by the option name, also in directory order, then architecture specific sections, sorted by the architecture name, with i386 being a traditional exception. Prodded by: bde
55 lines
695 B
Makefile
55 lines
695 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
SUBDIR= atrun \
|
|
bootpd \
|
|
comsat \
|
|
fingerd \
|
|
ftpd \
|
|
getNAME \
|
|
getty \
|
|
${_lukemftpd} \
|
|
${_mail.local} \
|
|
makekey \
|
|
mknetid \
|
|
${_named-xfer} \
|
|
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_BIND)
|
|
_named-xfer= named-xfer
|
|
.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>
|