aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/streams
diff options
context:
space:
mode:
authorMark Newton <newton@FreeBSD.org>1999-02-22 14:02:42 +0000
committerMark Newton <newton@FreeBSD.org>1999-02-22 14:02:42 +0000
commit11b6a5e653de7fc2ef4cd09aeddfc9bc68198ef6 (patch)
treec678d8185d8d7e81966660e1ef36078f5b0181ba /sys/modules/streams
parent85f0ea759042726bc0f4d9cd5e509283f4d4741d (diff)
downloadsrc-11b6a5e653de7fc2ef4cd09aeddfc9bc68198ef6.tar.gz
src-11b6a5e653de7fc2ef4cd09aeddfc9bc68198ef6.zip
Oops. Adding a Makefile might help anyone who wants to use streams
as a module...
Notes
Notes: svn path=/head/; revision=44212
Diffstat (limited to 'sys/modules/streams')
-rw-r--r--sys/modules/streams/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/sys/modules/streams/Makefile b/sys/modules/streams/Makefile
new file mode 100644
index 000000000000..8c83443d32b0
--- /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 <bsd.kmod.mk>