summaryrefslogtreecommitdiffstats
path: root/libexec/Makefile
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2004-01-16 15:23:19 +0000
committerru <ru@FreeBSD.org>2004-01-16 15:23:19 +0000
commit6593bb80ea605257d135ed6040839c2c7d97c28e (patch)
treee9acce15e121fbd68a9dc4f210872a01c8a6f103 /libexec/Makefile
parente3c786562ff87850be855dfd169fb04002f8419a (diff)
downloadFreeBSD-src-6593bb80ea605257d135ed6040839c2c7d97c28e.zip
FreeBSD-src-6593bb80ea605257d135ed6040839c2c7d97c28e.tar.gz
- Build things in pure dictionary order (see sort(1)).
- 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
Diffstat (limited to 'libexec/Makefile')
-rw-r--r--libexec/Makefile18
1 files changed, 12 insertions, 6 deletions
diff --git a/libexec/Makefile b/libexec/Makefile
index c4c3c13..af28d3a 100644
--- a/libexec/Makefile
+++ b/libexec/Makefile
@@ -8,8 +8,11 @@ SUBDIR= atrun \
ftpd \
getNAME \
getty \
+ ${_lukemftpd} \
+ ${_mail.local} \
makekey \
mknetid \
+ ${_named-xfer} \
pppoed \
pt_chown \
rbootd \
@@ -22,27 +25,30 @@ SUBDIR= atrun \
rpc.rwalld \
rpc.sprayd \
rshd \
+ ${_rtld-elf} \
save-entropy \
+ ${_smrsh} \
talkd \
tcpd \
telnetd \
tftpd \
ypxfr
-.if !defined(NOPIC)
-SUBDIR+=rtld-elf
+.if !defined(NO_BIND)
+_named-xfer= named-xfer
.endif
-.if !defined(NO_BIND)
-SUBDIR+=named-xfer
+.if !defined(NOPIC)
+_rtld-elf= rtld-elf
.endif
.if !defined(NO_SENDMAIL)
-SUBDIR+=mail.local smrsh
+_mail.local= mail.local
+_smrsh= smrsh
.endif
.if defined(WANT_LUKEMFTPD)
-SUBDIR+=lukemftpd
+_lukemftpd= lukemftpd
.endif
.include <bsd.subdir.mk>
OpenPOWER on IntegriCloud