822923447e
the kernel by wrapping all targets for fake opt_*.h files in .if defined(KERNBUILDDIR). Thus, such fake files won't be created at all if modules are built with the kernel. Some modules undergo cleanup like removing unused or unneeded options or .h files, without which they wouldn't build this way or the other. Reviewed by: ru Tested by: no binary changes in modules built alone Tested on: i386 sparc64 amd64
18 lines
278 B
Makefile
18 lines
278 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/nmdm
|
|
|
|
KMOD= nmdm
|
|
SRCS= nmdm.c
|
|
SRCS+= opt_compat.h opt_tty.h vnode_if.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_compat.h:
|
|
echo "#define COMPAT_43 1" >opt_compat.h
|
|
|
|
opt_tty.h:
|
|
echo "#define TTYHOG 8192" >opt_tty.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|