From 88ce2dfc415677a600f57ec69d18ecfd0577a900 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 21 Sep 1996 01:51:11 +0000 Subject: [PATCH] Fiexed CFLAGS. Compiling things in the kernel without -O now causes zillions of warnings about static inline functions because `inline' is ignored without -O. --- lkm/ccd/Makefile | 4 ++-- sys/modules/ccd/Makefile | 4 ++-- 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