Deleted Added
full compact
1# $Id: Makefile,v 1.11 1999/02/01 00:52:21 grog Exp $
1# $FreeBSD: head/sys/modules/streams/Makefile 50477 1999-08-28 01:08:13Z peter $
2
3MAINTAINER = newton@atdot.dotat.org
4SOURCE= ${.CURDIR}/../../dev/streams
5.if defined(DEBUG)
6CFLAGS+= -DDEBUG_SVR4
7.endif
8
9.PATH: ${SOURCE}
10KMOD= streams
11SRCS= streams.c streams.h opt_streams.h opt_devfs.h
12
13NOMAN=
14
15CFLAGS+= -O
16
17CLEANFILES+= vnode_if.h vnode_if.c streams.h opt_streams.h opt_devfs.h
18
19all:
20
21streams.h:
22 @echo "#define NSTREAMS 1" > streams.h
23
24opt_streams.h:
25 @touch opt_streams.h
26
27opt_devfs.h:
28 @touch opt_devfs.h
29
30.include <bsd.kmod.mk>