2002-07-01 01:45:03 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
LIB= ufs
|
2003-08-18 15:25:39 +00:00
|
|
|
SHLIBDIR?= /lib
|
2003-01-19 01:31:26 +00:00
|
|
|
SRCS= block.c cgroup.c inode.c sblock.c type.c
|
2002-07-01 01:45:03 +00:00
|
|
|
INCS= libufs.h
|
2003-06-09 09:59:11 +00:00
|
|
|
MAN= bread.3 cgread.3 libufs.3 sbread.3 ufs_disk_close.3
|
|
|
|
MLINKS+= bread.3 bwrite.3
|
|
|
|
MLINKS+= cgread.3 cgread1.3
|
|
|
|
MLINKS+= sbread.3 sbwrite.3
|
|
|
|
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
|
2002-07-01 01:45:03 +00:00
|
|
|
CFLAGS+= -I${.CURDIR} -D_LIBUFS
|
2002-07-01 18:20:48 +00:00
|
|
|
.if defined(LIBUFS_DEBUG)
|
2002-07-01 01:45:03 +00:00
|
|
|
CFLAGS+= -D_LIBUFS_DEBUGGING
|
|
|
|
.endif
|
2003-01-30 00:11:01 +00:00
|
|
|
WARNS?= 2
|
2002-07-01 01:45:03 +00:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|