freebsd-dev/bin/Makefile
Yaroslav Tykhiy 21be3b3183 pkill(1) first appeared in /usr/bin, but later it was moved to /bin
for the convenience of rc.d.  Now it has happily lived there for quite
a while.  So move the pkill(1) source files from usr.bin to bin, too.

Approved by:	gad
2008-08-31 14:27:59 +00:00

57 lines
558 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 \
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>