freebsd-src/bin/Makefile
Enji Cooper c0eb492e98 MFC r322951:
Respect MK_TCSH with build-tools and native-xtools

This helps reduce the WORLDTMP footprint slightly.

Based on a patch I submitted 5 years ago to GNATS.

PR:		174051
Relnotes:	yes (anyone who cross-builds with MK_TCSH=yes will run into
		     build failures if the host doesn't have tcsh(1))
Reminded by:	Fabian Keil <fk@fabiankeil.de>
2017-09-30 20:44:25 +00:00

64 lines
651 B
Makefile

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