freebsd-dev/bin/Makefile
Doug Barton 9fc9ecb643 Finish the job of conditionalizing UUCP by preventing files in /etc/uucp
from being installed, and make rmail conditional on neither of
NO_SENDMAIL and NOUUCP.

PR:		bin/21321
Submitted by:	Me
2000-10-29 06:57:59 +00:00

42 lines
412 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
SUBDIR= cat \
chio \
chmod \
cp \
date \
dd \
df \
domainname \
echo \
ed \
expr \
hostname \
kill \
ln \
ls \
mkdir \
mv \
pax \
ps \
pwd \
rcp \
rm \
rmdir \
sh \
sleep \
stty \
sync \
test
.if !defined(NO_TCSH)
SUBDIR+=csh
.endif
.if !defined(NO_SENDMAIL) && !defined(NOUUCP)
SUBDIR+=rmail
.endif
.include <bsd.subdir.mk>