88ce2dfc41
zillions of warnings about static inline functions because `inline' is ignored without -O.
17 lines
308 B
Makefile
17 lines
308 B
Makefile
# $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.
|
|
|
|
NCCD?= 4
|
|
CLEANFILES+= ccd.h vnode_if.h vnode_if.c
|
|
|
|
ccd.h:
|
|
echo "#define NCCD ${NCCD}" > ccd.h
|
|
|
|
.include <bsd.kmod.mk>
|