diff options
author | grog <grog@FreeBSD.org> | 1999-02-01 00:52:51 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-02-01 00:52:51 +0000 |
commit | 81596f0f40afeff4a9e4d4f5c4deef52145afce2 (patch) | |
tree | 35a9648e397f92aceff0d5e7ac6d2a763bdd5499 /sys/modules/vinum/Makefile | |
parent | 4211323dae9dadfb44c1414f55c1934439cf327c (diff) | |
download | FreeBSD-src-81596f0f40afeff4a9e4d4f5c4deef52145afce2.zip FreeBSD-src-81596f0f40afeff4a9e4d4f5c4deef52145afce2.tar.gz |
Move CFLAGS to God's Own Position
Remove white space between CFLAGS and +=
Remove unneeded options
Implied-by: bde
Diffstat (limited to 'sys/modules/vinum/Makefile')
-rw-r--r-- | sys/modules/vinum/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/modules/vinum/Makefile b/sys/modules/vinum/Makefile index 66a4db4..b5ae146 100644 --- a/sys/modules/vinum/Makefile +++ b/sys/modules/vinum/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1999/01/21 00:25:47 grog Exp $ +# $Id: Makefile,v 1.10 1999/01/30 01:45:44 grog Exp $ MAINTAINER = grog@FreeBSD.org SOURCE= ${.CURDIR}/../../dev/vinum @@ -13,6 +13,10 @@ SRCS= vnode_if.h opt_vinum.h vinumstate.h vinumvar.h \ NOMAN= +# If you remove -DVINUMDEBUG here, you must also do it in src/sbin/Makefile. +# Otherwise a number of ioctls will fail. +CFLAGS+= -DVINUMDEBUG -g -O + CLEANFILES+= vnode_if.h vnode_if.c opt_vinum.h all: @@ -27,5 +31,3 @@ maketabs: maketabs.c ${CC} -g -o maketabs maketabs.c .include <bsd.kmod.mk> - -CFLAGS += -I${SOURCE} -g -DVINUMDEBUG -Wall -Wno-unused -Wno-parentheses |