mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 09:06:49 -04:00
Oops. Adding a Makefile might help anyone who wants to use streams
as a module...
This commit is contained in:
parent
85f0ea7590
commit
11b6a5e653
1 changed files with 30 additions and 0 deletions
30
sys/modules/streams/Makefile
Normal file
30
sys/modules/streams/Makefile
Normal file
|
|
@ -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>
|
||||
Loading…
Reference in a new issue