Makefile revision 151350
1# $FreeBSD: head/sys/modules/nmdm/Makefile 151350 2005-10-14 23:30:17Z yar $
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