From 11b6a5e653de7fc2ef4cd09aeddfc9bc68198ef6 Mon Sep 17 00:00:00 2001 From: Mark Newton Date: Mon, 22 Feb 1999 14:02:42 +0000 Subject: [PATCH] Oops. Adding a Makefile might help anyone who wants to use streams as a module... --- sys/modules/streams/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 sys/modules/streams/Makefile diff --git a/sys/modules/streams/Makefile b/sys/modules/streams/Makefile new file mode 100644 index 00000000000..8c83443d32b --- /dev/null +++ b/sys/modules/streams/Makefile @@ -0,0 +1,30 @@ +# $Id: Makefile,v 1.11 1999/02/01 00:52:21 grog Exp $ + +MAINTAINER = newton@atdot.dotat.org +SOURCE= ${.CURDIR}/../../dev/streams +.if defined(DEBUG) +CFLAGS+= -DDEBUG_SVR4 +.endif + +.PATH: ${SOURCE} +KMOD= streams +SRCS= streams.c streams.h opt_streams.h opt_devfs.h + +NOMAN= + +CFLAGS+= -O + +CLEANFILES+= vnode_if.h vnode_if.c streams.h opt_streams.h opt_devfs.h + +all: + +streams.h: + @echo "#define NSTREAMS 1" > streams.h + +opt_streams.h: + @touch opt_streams.h + +opt_devfs.h: + @touch opt_devfs.h + +.include