a42ac676f5
GIANT from VFS. This code is particulary broken and fragile and other in-kernel implementations around, found in other operating systems, don't really seem clean and solid enough to be imported at all. If someone wants to reconsider in-kernel NTFS implementation for inclusion again, a fair effort for completely fixing and cleaning it up is expected. In the while NTFS regular users can use FUSE interface and ntfs-3g port to work with their NTFS partitions. This is not targeted for MFC.
123 lines
1.4 KiB
Makefile
123 lines
1.4 KiB
Makefile
# @(#)Makefile 8.5 (Berkeley) 3/31/94
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
# XXX MISSING: icheck ncheck
|
|
|
|
SUBDIR=adjkerntz \
|
|
atacontrol \
|
|
badsect \
|
|
camcontrol \
|
|
ccdconfig \
|
|
clri \
|
|
comcontrol \
|
|
conscontrol \
|
|
ddb \
|
|
devfs \
|
|
dhclient \
|
|
dmesg \
|
|
dump \
|
|
dumpfs \
|
|
dumpon \
|
|
etherswitchcfg \
|
|
ffsinfo \
|
|
fsck \
|
|
fsck_ffs \
|
|
fsck_msdosfs \
|
|
fsdb \
|
|
fsirand \
|
|
gbde \
|
|
geom \
|
|
ggate \
|
|
growfs \
|
|
gvinum \
|
|
hastctl \
|
|
hastd \
|
|
ifconfig \
|
|
init \
|
|
iscontrol \
|
|
kldconfig \
|
|
kldload \
|
|
kldstat \
|
|
kldunload \
|
|
ldconfig \
|
|
md5 \
|
|
mdconfig \
|
|
mdmfs \
|
|
mknod \
|
|
mksnap_ffs \
|
|
mount \
|
|
mount_cd9660 \
|
|
mount_fusefs \
|
|
mount_msdosfs \
|
|
mount_nfs \
|
|
mount_nullfs \
|
|
mount_udf \
|
|
mount_unionfs \
|
|
newfs \
|
|
newfs_msdos \
|
|
nfsiod \
|
|
nos-tun \
|
|
ping \
|
|
rcorder \
|
|
reboot \
|
|
recoverdisk \
|
|
resolvconf \
|
|
restore \
|
|
route \
|
|
savecore \
|
|
setkey \
|
|
shutdown \
|
|
spppcontrol \
|
|
swapon \
|
|
sysctl \
|
|
tunefs \
|
|
umount \
|
|
|
|
.if ${MK_ATM} != "no"
|
|
SUBDIR+= atm
|
|
.endif
|
|
|
|
.if ${MK_CXX} != "no"
|
|
SUBDIR+= devd
|
|
.endif
|
|
|
|
.if ${MK_IPFILTER} != "no"
|
|
SUBDIR+= ipf
|
|
.endif
|
|
|
|
.if ${MK_IPFW} != "no"
|
|
SUBDIR+= ipfw
|
|
SUBDIR+= natd
|
|
.endif
|
|
|
|
.if ${MK_NAND} != "no"
|
|
SUBDIR+= nandfs
|
|
SUBDIR+= newfs_nandfs
|
|
.endif
|
|
|
|
.if ${MK_PF} != "no"
|
|
SUBDIR+= pfctl
|
|
SUBDIR+= pflogd
|
|
.endif
|
|
|
|
.if ${MK_INET6} != "no"
|
|
SUBDIR+= ping6
|
|
SUBDIR+= rtsol
|
|
.endif
|
|
|
|
.if ${MK_QUOTAS} != "no"
|
|
SUBDIR+= quotacheck
|
|
.endif
|
|
|
|
.if ${MK_ROUTED} != "no"
|
|
SUBDIR+= routed
|
|
.endif
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
SUBDIR:= ${SUBDIR:O}
|
|
|
|
.include <bsd.subdir.mk>
|