From c21c16a492fe6cf49bed0de198d17a41fce0a14a Mon Sep 17 00:00:00 2001 From: Ian Dowse Date: Sun, 30 Jun 2002 02:23:12 +0000 Subject: [PATCH] Add a makefile for building UFS as a module. Since it is of marginal use it is not built by default, and there are currently bugs that prevent UFS from being unloaded. Nevertheless it can be useful when developing UFS code on network-booted machines. --- sys/modules/ufs/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sys/modules/ufs/Makefile diff --git a/sys/modules/ufs/Makefile b/sys/modules/ufs/Makefile new file mode 100644 index 000000000000..66eff5565f41 --- /dev/null +++ b/sys/modules/ufs/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../ufs/ufs ${.CURDIR}/../../ufs/ffs + +KMOD= ufs +SRCS= opt_ddb.h opt_ffs.h opt_ffs_broken_fixme.h opt_quota.h opt_suiddir.h \ + opt_ufs.h vnode_if.h ufs_acl.c ufs_bmap.c ufs_dirhash.c ufs_extattr.c \ + ufs_ihash.c ufs_inode.c ufs_lookup.c ufs_quota.c ufs_vfsops.c \ + ufs_vnops.c ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_snapshot.c \ + ffs_softdep.c ffs_subr.c ffs_tables.c ffs_vfsops.c ffs_vnops.c + +CFLAGS+= -DSOFTUPDATES -DUFS_DIRHASH + +.include