xref: /freebsd/sys/modules/nmdm/Makefile (revision c98323078dede7579020518ec84cdcb478e5c142)
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