diff options
author | newton <newton@FreeBSD.org> | 1999-02-22 14:02:42 +0000 |
---|---|---|
committer | newton <newton@FreeBSD.org> | 1999-02-22 14:02:42 +0000 |
commit | 66edcaeeb18f31528f0b1f445a8466414c18b188 (patch) | |
tree | 86d684a4ffe719a9903abef6b7c17ffd6ca71ded | |
parent | 3b2e9c970d1b3c4670c145d0363db0fabc8ee122 (diff) | |
download | FreeBSD-src-66edcaeeb18f31528f0b1f445a8466414c18b188.zip FreeBSD-src-66edcaeeb18f31528f0b1f445a8466414c18b188.tar.gz |
Oops. Adding a Makefile might help anyone who wants to use streams
as a module...
-rw-r--r-- | sys/modules/streams/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sys/modules/streams/Makefile b/sys/modules/streams/Makefile new file mode 100644 index 0000000..8c83443 --- /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> |