]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libufs/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libufs / Makefile
1 # $FreeBSD$
2
3 LIB=    ufs
4 SHLIBDIR?= /lib
5 SHLIB_MAJOR=    6
6
7 SRCS=   block.c cgroup.c inode.c sblock.c type.c ffs_subr.c ffs_tables.c
8 INCS=   libufs.h
9
10 MAN=    bread.3 cgread.3 libufs.3 sbread.3 ufs_disk_close.3
11 MLINKS+= bread.3 bwrite.3
12 MLINKS+= bread.3 berase.3
13 MLINKS+= cgread.3 cgread1.3
14 MLINKS+= cgread.3 cgwrite1.3
15 MLINKS+= sbread.3 sbwrite.3
16 MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3
17 MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3
18 MLINKS+= ufs_disk_close.3 ufs_disk_write.3
19
20 .PATH:  ${.CURDIR}/../../sys/ufs/ffs
21
22 WARNS?= 2
23
24 DEBUG_FLAGS = -g
25 CFLAGS+= -D_LIBUFS
26 .if defined(LIBUFS_DEBUG)
27 CFLAGS+= -D_LIBUFS_DEBUGGING
28 .endif
29 CFLAGS+= -I${.CURDIR}
30
31 .include <bsd.lib.mk>