summaryrefslogtreecommitdiff
path: root/lkm/vinum/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lkm/vinum/Makefile')
-rw-r--r--lkm/vinum/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/lkm/vinum/Makefile b/lkm/vinum/Makefile
new file mode 100644
index 0000000000000..f1f4bb76117a5
--- /dev/null
+++ b/lkm/vinum/Makefile
@@ -0,0 +1,26 @@
+# $Id: Makefile,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $
+
+.PATH: ${.CURDIR}/../../sys/dev/ccd
+KMOD= vinum_mod
+SRCS= vinum.c vinum.h vnode_if.h parser.c config.c io.c util.c vinumhdr.h request.h \
+ state.c memory.c request.c lock.c vinumext.h vinumio.h vinumkw.h \
+ vinumstate.h vinumvar.h revive.c vinumioctl.c interrupt.c
+NOMAN=
+PSEUDO_LKM=
+CFLAGS = -I${.CURDIR} -O -g -I/usr/include/machine -DDEBUG -Wall -Wno-unused -Wno-parentheses
+
+CLEANFILES+= vinum.h vnode_if.h vnode_if.c
+
+all:
+
+# We don't need this, but the Makefile wants it
+vinum.h:
+ touch $@
+
+state.h: maketabs vinumstate.h
+ ./maketabs >state.h
+
+maketabs: maketabs.c
+ ${CC} -g -o maketabs maketabs.c
+
+.include <bsd.kmod.mk>