freebsd-dev/lkm/ccd/Makefile
Bruce Evans 88ce2dfc41 Fiexed CFLAGS. Compiling things in the kernel without -O now causes
zillions of warnings about static inline functions because `inline'
is ignored without -O.
1996-09-21 01:51:11 +00:00

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>