]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libufs/Makefile
Fix improper checking in SCTP-AUTH shared key update.
[FreeBSD/FreeBSD.git] / lib / libufs / Makefile
1 # $FreeBSD$
2
3 PACKAGE=lib${LIB}
4 LIB=    ufs
5 SHLIBDIR?= /lib
6 SHLIB_MAJOR=    6
7
8 SRCS=   block.c cgroup.c inode.c sblock.c type.c ffs_subr.c ffs_tables.c
9 INCS=   libufs.h
10
11 MAN=    bread.3 cgread.3 libufs.3 sbread.3 ufs_disk_close.3
12 MLINKS+= bread.3 bwrite.3
13 MLINKS+= bread.3 berase.3
14 MLINKS+= cgread.3 cgread1.3
15 MLINKS+= cgread.3 cgwrite1.3
16 MLINKS+= sbread.3 sbwrite.3
17 MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3
18 MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3
19 MLINKS+= ufs_disk_close.3 ufs_disk_write.3
20
21 .PATH:  ${SRCTOP}/sys/ufs/ffs
22
23 WARNS?= 2
24
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>