diff options
author | Jeff Roberson <jeff@FreeBSD.org> | 2010-04-24 07:05:35 +0000 |
---|---|---|
committer | Jeff Roberson <jeff@FreeBSD.org> | 2010-04-24 07:05:35 +0000 |
commit | 113db2dddb719510679d71ff41679afe30c8b3d1 (patch) | |
tree | e551aa2ab43f7f11c3646b241ebf3f582988d375 /lib/libufs/Makefile | |
parent | 07b9cc2f468471a723504ac789201a84f6dcd38a (diff) | |
download | src-113db2dddb719510679d71ff41679afe30c8b3d1.tar.gz src-113db2dddb719510679d71ff41679afe30c8b3d1.zip |
- Merge soft-updates journaling from projects/suj/head into head. This
brings in support for an optional intent log which eliminates the need
for background fsck on unclean shutdown.
Sponsored by: iXsystems, Yahoo!, and Juniper.
With help from: McKusick and Peter Holm
Notes
Notes:
svn path=/head/; revision=207141
Diffstat (limited to 'lib/libufs/Makefile')
-rw-r--r-- | lib/libufs/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libufs/Makefile b/lib/libufs/Makefile index c9232ef54ad8..1dfc2429a1f2 100644 --- a/lib/libufs/Makefile +++ b/lib/libufs/Makefile @@ -3,7 +3,7 @@ LIB= ufs SHLIBDIR?= /lib -SRCS= block.c cgroup.c inode.c sblock.c type.c +SRCS= block.c cgroup.c inode.c sblock.c type.c ffs_subr.c ffs_tables.c INCS= libufs.h MAN= bread.3 cgread.3 libufs.3 sbread.3 ufs_disk_close.3 @@ -16,8 +16,11 @@ MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3 MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3 MLINKS+= ufs_disk_close.3 ufs_disk_write.3 -WARNS?= 3 +.PATH: ${.CURDIR}/../../sys/ufs/ffs +WARNS?= 2 + +DEBUG_FLAGS = -g CFLAGS+= -D_LIBUFS .if defined(LIBUFS_DEBUG) CFLAGS+= -D_LIBUFS_DEBUGGING |