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+= cgread.3 cgread1.3 12MLINKS+= cgread.3 cgwrite1.3 13MLINKS+= sbread.3 sbwrite.3 14MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3 15MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3 16MLINKS+= ufs_disk_close.3 ufs_disk_write.3 17 18WARNS?= 2 19 20CFLAGS+= -D_LIBUFS 21.if defined(LIBUFS_DEBUG) 22CFLAGS+= -D_LIBUFS_DEBUGGING 23.endif 24CFLAGS+= -I${.CURDIR} 25 26.include <bsd.lib.mk> 27