diff options
author | wollman <wollman@FreeBSD.org> | 1994-09-21 23:27:16 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-09-21 23:27:16 +0000 |
commit | 664e99fa6ed276926f0c1d86f833274643654d19 (patch) | |
tree | b6c6b02c3cdaa07c1f63200a868d07a7113dad8d /sys/modules/msdosfs | |
parent | 8c2367ad380541b5c6c41a810df43a755581aa9f (diff) | |
download | FreeBSD-src-664e99fa6ed276926f0c1d86f833274643654d19.zip FreeBSD-src-664e99fa6ed276926f0c1d86f833274643654d19.tar.gz |
Build LKMs for all ``easy'' filesystems. (lfs can be done, but it's more
work; ditto NFS and it's even more work.)
Diffstat (limited to 'sys/modules/msdosfs')
-rw-r--r-- | sys/modules/msdosfs/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/msdosfs/Makefile b/sys/modules/msdosfs/Makefile new file mode 100644 index 0000000..777699d --- /dev/null +++ b/sys/modules/msdosfs/Makefile @@ -0,0 +1,11 @@ +# $Id: Makefile,v 1.1 1994/09/16 20:24:28 wollman Exp $ + +.PATH: ${.CURDIR}/../../sys/msdosfs +KMOD= msdos_mod +SRCS= msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_denode.c \ + msdosfs_lookup.c msdosfs_vfsops.c msdosfs_vnops.c +NOMAN= +VFS_LKM= +CFLAGS+= -DMSDOSFS + +.include <bsd.kmod.mk> |