From 5b312e287b243f7202cf5a21999e3da021076593 Mon Sep 17 00:00:00 2001 From: keramida Date: Mon, 26 Sep 2005 06:23:43 +0000 Subject: minor style.Makefile(5) fixes: - WARNS before CFLAGS - CFLAGS -DXXX before -IXXX Approved by: ru --- lib/libufs/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib/libufs') diff --git a/lib/libufs/Makefile b/lib/libufs/Makefile index fc72c0c..855af17 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 -- cgit v1.1