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