xref: /freebsd/sys/modules/nmdm/Makefile (revision 262e143bd46171a6415a5b28af260a5efa2a3db8)
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
9.if !defined(KERNBUILDDIR)
10opt_compat.h:
11	echo "#define COMPAT_43 1" >opt_compat.h
12
13opt_tty.h:
14	echo "#define TTYHOG 8192" >opt_tty.h
15.endif
16
17.include <bsd.kmod.mk>
18