diff options
-rw-r--r-- | bin/Makefile | 13 |
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> |