summaryrefslogtreecommitdiffstats
path: root/bin/Makefile
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2010-09-13 01:29:51 +0000
committerimp <imp@FreeBSD.org>2010-09-13 01:29:51 +0000
commit681e259e01efa9c7cedfea30531274a306838ddd (patch)
tree834186f27f185444716133ef382df1cf4490ecd7 /bin/Makefile
parent3e55b193ba316eb8060a763c9e8d8b9236086c81 (diff)
downloadFreeBSD-src-681e259e01efa9c7cedfea30531274a306838ddd.zip
FreeBSD-src-681e259e01efa9c7cedfea30531274a306838ddd.tar.gz
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).
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 3114e67..e5052ca 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>
OpenPOWER on IntegriCloud