]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libufs/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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+= cgread.3 cgread1.3
12 MLINKS+= cgread.3 cgwrite1.3
13 MLINKS+= sbread.3 sbwrite.3
14 MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3
15 MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3
16 MLINKS+= ufs_disk_close.3 ufs_disk_write.3
17
18 WARNS?= 2
19
20 CFLAGS+= -D_LIBUFS
21 .if defined(LIBUFS_DEBUG)
22 CFLAGS+= -D_LIBUFS_DEBUGGING
23 .endif
24 CFLAGS+= -I${.CURDIR}
25
26 .include <bsd.lib.mk>