blob: 88a74f3e62b3c7d28831ed8dddd06287d597601c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# Handle options (KERN_OPTS) for kernel module options. This can be included earlier in a kmod Makefile
# to allow KERN_OPTS to control SRCS, etc.
.if !target(__<kmod.opts.mk>__)
__<kmod.opts.mk>__:
.include <bsd.init.mk>
# Grab all the options for a kernel build. For backwards compat, we need to
# do this after bsd.own.mk.
.include "kern.opts.mk"
.include <bsd.compiler.mk>
.include "config.mk"
.endif # !target(__<kmod.opts.mk>__)
|