summaryrefslogtreecommitdiff
path: root/bin/Makefile
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2010-09-13 01:29:51 +0000
committerWarner Losh <imp@FreeBSD.org>2010-09-13 01:29:51 +0000
commit9768ccae056d693c0ab571a02d16d57ce8785c88 (patch)
tree834186f27f185444716133ef382df1cf4490ecd7 /bin/Makefile
parent9cbda5febfa066ff1d9ce80b1ba78f1fcb5bce32 (diff)
downloadsrc-test2-9768ccae056d693c0ab571a02d16d57ce8785c88.tar.gz
src-test2-9768ccae056d693c0ab571a02d16d57ce8785c88.zip
Merge from tbemd:
Add directory names directly and sort at the end. Include bsd.arch.inc.mk so we can, in the future, more easily make arch dependent changes in /bin (unlikely, but is needed for symmetry).
Notes
Notes: svn path=/head/; revision=212515
Diffstat (limited to 'bin/Makefile')
-rw-r--r--bin/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/Makefile b/bin/Makefile
index 3114e670097f..e5052cad51a5 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -8,7 +8,6 @@ SUBDIR= cat \
chio \
chmod \
cp \
- ${_csh} \
date \
dd \
df \
@@ -29,10 +28,8 @@ SUBDIR= cat \
ps \
pwait \
pwd \
- ${_rcp} \
realpath \
rm \
- ${_rmail} \
rmdir \
setfacl \
sh \
@@ -43,15 +40,19 @@ SUBDIR= cat \
uuidgen
.if ${MK_RCMDS} != "no"
-_rcp= rcp
+SUBDIR+= rcp
.endif
.if ${MK_SENDMAIL} != "no"
-_rmail= rmail
+SUBDIR+= rmail
.endif
.if ${MK_TCSH} != "no"
-_csh= csh
+SUBDIR+= csh
.endif
+.include <bsd.arch.inc.mk>
+
+SUBDIR:= ${SUBDIR:O}
+
.include <bsd.subdir.mk>