aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-09-21 01:51:11 +0000
committerBruce Evans <bde@FreeBSD.org>1996-09-21 01:51:11 +0000
commit88ce2dfc415677a600f57ec69d18ecfd0577a900 (patch)
tree23297f1b4af9b15657bfc8e10d7f4d3f94adaa23
parent4195b4af58bf9be35eb607131f3d5592a47eb92a (diff)
downloadsrc-88ce2dfc415677a600f57ec69d18ecfd0577a900.tar.gz
src-88ce2dfc415677a600f57ec69d18ecfd0577a900.zip
Fiexed CFLAGS. Compiling things in the kernel without -O now causes
zillions of warnings about static inline functions because `inline' is ignored without -O.
Notes
Notes: svn path=/head/; revision=18432
-rw-r--r--lkm/ccd/Makefile4
-rw-r--r--sys/modules/ccd/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/lkm/ccd/Makefile b/lkm/ccd/Makefile
index d572ca7d953a..a6bf54b8dae4 100644
--- a/lkm/ccd/Makefile
+++ b/lkm/ccd/Makefile
@@ -1,11 +1,11 @@
-# $Id: Makefile,v 1.1.1.1 1996/06/12 03:49:15 asami Exp $
+# $Id: Makefile,v 1.2 1996/06/23 14:56:04 bde Exp $
.PATH: ${.CURDIR}/../../sys/dev/ccd
KMOD= ccd_mod
SRCS= ccd.c ccd.h vnode_if.h
NOMAN=
PSEUDO_LKM=
-CFLAGS= -I.
+CFLAGS+= -I.
NCCD?= 4
CLEANFILES+= ccd.h vnode_if.h vnode_if.c
diff --git a/sys/modules/ccd/Makefile b/sys/modules/ccd/Makefile
index d572ca7d953a..a6bf54b8dae4 100644
--- a/sys/modules/ccd/Makefile
+++ b/sys/modules/ccd/Makefile
@@ -1,11 +1,11 @@
-# $Id: Makefile,v 1.1.1.1 1996/06/12 03:49:15 asami Exp $
+# $Id: Makefile,v 1.2 1996/06/23 14:56:04 bde Exp $
.PATH: ${.CURDIR}/../../sys/dev/ccd
KMOD= ccd_mod
SRCS= ccd.c ccd.h vnode_if.h
NOMAN=
PSEUDO_LKM=
-CFLAGS= -I.
+CFLAGS+= -I.
NCCD?= 4
CLEANFILES+= ccd.h vnode_if.h vnode_if.c