3be1cc7870
it with vfsload("msdos"). (The proper fix would be to rename the `msdos' file system to `msdosfs' in VFS_SET(), and mount_msdos(8) to mount_msdosfs(8). But that would break too many existing fstab(5) setups, and would require a lot of unnecessary documentation and code msdos -> msdosfs changes.) Noticed by: markm
16 lines
260 B
Makefile
16 lines
260 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/msdosfs
|
|
|
|
KMOD= msdos
|
|
SRCS= vnode_if.h \
|
|
msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c \
|
|
msdosfs_vfsops.c msdosfs_vnops.c
|
|
NOMAN=
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|