1# $FreeBSD$ 2 3LIB= ufs 4SHLIBDIR?= /lib 5 6SRCS= block.c cgroup.c inode.c sblock.c type.c 7INCS= libufs.h 8 9MAN= bread.3 cgread.3 libufs.3 sbread.3 ufs_disk_close.3 10MLINKS+= bread.3 bwrite.3 11MLINKS+= bread.3 berase.3 12MLINKS+= cgread.3 cgread1.3 13MLINKS+= cgread.3 cgwrite1.3 14MLINKS+= sbread.3 sbwrite.3 15MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3 16MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3 17MLINKS+= ufs_disk_close.3 ufs_disk_write.3 18 19WARNS?= 2 20 21CFLAGS+= -D_LIBUFS 22.if defined(LIBUFS_DEBUG) 23CFLAGS+= -D_LIBUFS_DEBUGGING 24.endif 25CFLAGS+= -I${.CURDIR} 26 27.include <bsd.lib.mk> 28