freebsd-dev/bin/Makefile
Jilles Tjoelker 0e5e416780 Add pwait utility, which waits for any process to terminate.
This is similar to the Solaris utility of the same name.

Some use cases:
* rc.subr's wait_for_pids
* interactive use, e.g. to shut down the computer when some task is done
  even if the task is already running

Discussed on:	hackers@
2009-11-17 22:47:20 +00:00

58 lines
567 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
.include <bsd.own.mk>
SUBDIR= cat \
chflags \
chio \
chmod \
cp \
${_csh} \
date \
dd \
df \
domainname \
echo \
ed \
expr \
getfacl \
hostname \
kenv \
kill \
ln \
ls \
mkdir \
mv \
pax \
pkill \
ps \
pwait \
pwd \
${_rcp} \
realpath \
rm \
${_rmail} \
rmdir \
setfacl \
sh \
sleep \
stty \
sync \
test \
uuidgen
.if ${MK_RCMDS} != "no"
_rcp= rcp
.endif
.if ${MK_SENDMAIL} != "no"
_rmail= rmail
.endif
.if ${MK_TCSH} != "no"
_csh= csh
.endif
.include <bsd.subdir.mk>