freebsd-dev/sbin/Makefile
Sam Leffler 690f477d75 add new build knobs and jigger some existing controls to improve
control over the result of buildworld and installworld; this especially
helps packaging systems such as nanobsd

Reviewed by:	various (posted to arch)
MFC after:	1 month
2008-09-21 22:02:26 +00:00

163 lines
2.0 KiB
Makefile

# @(#)Makefile 8.5 (Berkeley) 3/31/94
# $FreeBSD$
.include <bsd.own.mk>
# XXX MISSING: icheck ncheck
SUBDIR= adjkerntz \
atacontrol \
${_atm} \
badsect \
${_bsdlabel} \
camcontrol \
ccdconfig \
clri \
comcontrol \
conscontrol \
ddb \
${_devd} \
devfs \
dhclient \
dmesg \
dump \
dumpfs \
dumpon \
${_fdisk} \
${_fdisk_pc98} \
ffsinfo \
fsck \
fsck_ffs \
fsck_msdosfs \
fsdb \
fsirand \
gbde \
geom \
ggate \
growfs \
gvinum \
idmapd \
ifconfig \
init \
${_ipf} \
${_ipfw} \
iscontrol \
kldconfig \
kldload \
kldstat \
kldunload \
ldconfig \
${_mca} \
md5 \
mdconfig \
mdmfs \
mknod \
mksnap_ffs \
mount \
mount_cd9660 \
mount_msdosfs \
mount_nfs \
mount_ntfs \
mount_nullfs \
mount_udf \
mount_unionfs \
${_natd} \
newfs \
newfs_msdos \
nfsiod \
nos-tun \
${_pfctl} \
${_pflogd} \
ping \
${_ping6} \
${_quotacheck} \
rcorder \
reboot \
recoverdisk \
restore \
route \
${_routed} \
${_rtsol} \
savecore \
${_sconfig} \
setkey \
shutdown \
slattach \
spppcontrol \
${_startslip} \
${_sunlabel} \
swapon \
sysctl \
tunefs \
umount \
.if ${MK_ATM} != "no"
_atm= atm
.endif
.if ${MK_CXX} != "no"
_devd= devd
.endif
.if ${MK_IPFILTER} != "no"
_ipf= ipf
.endif
.if ${MK_IPFW} != "no"
_ipfw= ipfw
_natd= natd
.endif
.if ${MK_PF} != "no"
_pfctl= pfctl
_pflogd= pflogd
.endif
.if ${MK_INET6} != "no"
_ping6= ping6
_rtsol= rtsol
.endif
.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
_bsdlabel= bsdlabel
.endif
.if ${MK_QUOTAS} != "no"
_quotacheck= quotacheck
.endif
.if ${MK_ROUTED} != "no"
_routed= routed
.endif
.if ${MK_SLIP} != "no"
_startslip= startslip
.endif
.if ${MACHINE_ARCH} == "i386"
.if ${MACHINE} == "i386"
_fdisk= fdisk
.elif ${MACHINE} == "pc98"
_fdisk_pc98= fdisk_pc98
.endif
_sconfig= sconfig
.endif
.if ${MACHINE_ARCH} == "amd64"
_fdisk= fdisk
.endif
.if ${MACHINE_ARCH} == "arm"
_fdisk= fdisk
.endif
.if ${MACHINE_ARCH} == "ia64"
_mca= mca
.endif
.if ${MACHINE_ARCH} == "sparc64"
_sunlabel= sunlabel
.endif
.include <bsd.subdir.mk>