diff options
author | bde <bde@FreeBSD.org> | 1996-09-21 01:51:11 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-21 01:51:11 +0000 |
commit | 53961e2108a572064a341eaa478b1892432e2211 (patch) | |
tree | 23297f1b4af9b15657bfc8e10d7f4d3f94adaa23 /lkm/ccd/Makefile | |
parent | dd5375bf7c0c606b2a6c6e73255d88eb6e1edfd6 (diff) | |
download | FreeBSD-src-53961e2108a572064a341eaa478b1892432e2211.zip FreeBSD-src-53961e2108a572064a341eaa478b1892432e2211.tar.gz |
Fiexed CFLAGS. Compiling things in the kernel without -O now causes
zillions of warnings about static inline functions because `inline'
is ignored without -O.
Diffstat (limited to 'lkm/ccd/Makefile')
-rw-r--r-- | lkm/ccd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lkm/ccd/Makefile b/lkm/ccd/Makefile index d572ca7..a6bf54b 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 |