aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/nwfs/Makefile
diff options
context:
space:
mode:
authorYaroslav Tykhiy <ytykhiy@gmail.com>2005-10-14 23:30:17 +0000
committerYaroslav Tykhiy <ytykhiy@gmail.com>2005-10-14 23:30:17 +0000
commit822923447e454b30d310cb46903c9ddeca9f0a7a (patch)
tree40653d874a438a3202bb62dd66566bfd5b1386c1 /sys/modules/nwfs/Makefile
parent10d645b7e5a073fc2d4c2bd7472966b4381caf7c (diff)
downloadsrc-822923447e454b30d310cb46903c9ddeca9f0a7a.tar.gz
src-822923447e454b30d310cb46903c9ddeca9f0a7a.zip
Let modules use the kernel's opt_*.h files if built along with
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
Notes
Notes: svn path=/head/; revision=151350
Diffstat (limited to 'sys/modules/nwfs/Makefile')
-rw-r--r--sys/modules/nwfs/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/modules/nwfs/Makefile b/sys/modules/nwfs/Makefile
index 255aabc51a4b..69349de44709 100644
--- a/sys/modules/nwfs/Makefile
+++ b/sys/modules/nwfs/Makefile
@@ -6,13 +6,10 @@ KMOD= nwfs
SRCS= vnode_if.h \
nwfs_node.c nwfs_ioctl.c nwfs_io.c nwfs_vfsops.c nwfs_vnops.c \
- nwfs_subr.c opt_ncp.h opt_vmpage.h
+ nwfs_subr.c opt_vmpage.h
.if defined(VNPRINT)
CFLAGS+= -DVNPRINT
.endif
-opt_ncp.h:
- echo "#define NCP 1" > ${.TARGET}
-
.include <bsd.kmod.mk>