Deleted Added
sdiff udiff text old ( 150558 ) new ( 163835 )
full compact
1# $FreeBSD: head/lib/libufs/Makefile 150558 2005-09-26 06:23:43Z keramida $
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+= sbread.3 sbwrite.3
13MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3
14MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3
15MLINKS+= ufs_disk_close.3 ufs_disk_write.3
16
17WARNS?= 2
18
19CFLAGS+= -D_LIBUFS
20.if defined(LIBUFS_DEBUG)
21CFLAGS+= -D_LIBUFS_DEBUGGING
22.endif
23CFLAGS+= -I${.CURDIR}
24
25.include <bsd.lib.mk>