diff options
author | keramida <keramida@FreeBSD.org> | 2005-09-26 06:23:43 +0000 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2005-09-26 06:23:43 +0000 |
commit | 5b312e287b243f7202cf5a21999e3da021076593 (patch) | |
tree | 91e6bf6c86f757ebb68337201e566f00e22ebb44 /lib/libufs | |
parent | 8d8767b58c4ff0e7f206b2476f66508df51832cd (diff) | |
download | FreeBSD-src-5b312e287b243f7202cf5a21999e3da021076593.zip FreeBSD-src-5b312e287b243f7202cf5a21999e3da021076593.tar.gz |
minor style.Makefile(5) fixes:
- WARNS before CFLAGS
- CFLAGS -DXXX before -IXXX
Approved by: ru
Diffstat (limited to 'lib/libufs')
-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 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 <bsd.lib.mk> |