aboutsummaryrefslogtreecommitdiff
path: root/libexec/Makefile
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-01-16 15:23:19 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-01-16 15:23:19 +0000
commitd10a8d6cb46f77ccd63cf37f82c482bfc73c915e (patch)
treee9acce15e121fbd68a9dc4f210872a01c8a6f103 /libexec/Makefile
parent104ff764e5f7eb48891d4f3cc1ac727198c519e9 (diff)
- 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
Notes
svn path=/head/; revision=124587
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 c4c3c13499c2..af28d3a92166 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>