xref: /freebsd/sys/modules/nmdm/Makefile (revision 7cc9e6ddbb1a6cd38b2f44d4dd9dfc890d2fc9d0)
1# $FreeBSD$
2
3.PATH: ${.CURDIR}/../../dev/nmdm
4
5KMOD=	nmdm
6SRCS=	nmdm.c
7SRCS+=	opt_compat.h opt_tty.h vnode_if.h
8
9opt_compat.h:
10	echo "#define COMPAT_43 1" >opt_compat.h
11
12opt_tty.h:
13	echo "#define TTYHOG 8192" >opt_tty.h
14
15.include <bsd.kmod.mk>
16