diff options
author | Giorgos Keramidas <keramida@FreeBSD.org> | 2005-09-26 06:23:43 +0000 |
---|---|---|
committer | Giorgos Keramidas <keramida@FreeBSD.org> | 2005-09-26 06:23:43 +0000 |
commit | 727fbe77092ad0006ee405b98fcb1d86910945be (patch) | |
tree | 91e6bf6c86f757ebb68337201e566f00e22ebb44 | |
parent | b4a98d309e45d02ac314917d0cb0eaf4037ca0e8 (diff) | |
download | src-test2-727fbe77092ad0006ee405b98fcb1d86910945be.tar.gz src-test2-727fbe77092ad0006ee405b98fcb1d86910945be.zip |
Notes
-rw-r--r-- | lib/libufs/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libufs/Makefile b/lib/libufs/Makefile index fc72c0c7db22..855af175eead 100644 --- a/lib/libufs/Makefile +++ b/lib/libufs/Makefile @@ -2,8 +2,10 @@ LIB= ufs SHLIBDIR?= /lib + SRCS= block.c cgroup.c inode.c sblock.c type.c INCS= libufs.h + MAN= bread.3 cgread.3 libufs.3 sbread.3 ufs_disk_close.3 MLINKS+= bread.3 bwrite.3 MLINKS+= cgread.3 cgread1.3 @@ -11,10 +13,13 @@ MLINKS+= sbread.3 sbwrite.3 MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3 MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3 MLINKS+= ufs_disk_close.3 ufs_disk_write.3 -CFLAGS+= -I${.CURDIR} -D_LIBUFS + +WARNS?= 2 + +CFLAGS+= -D_LIBUFS .if defined(LIBUFS_DEBUG) CFLAGS+= -D_LIBUFS_DEBUGGING .endif -WARNS?= 2 +CFLAGS+= -I${.CURDIR} .include <bsd.lib.mk> |