3193579b66
regocnized as such at the time. Now that the other bogons in the tree have been fixed, we can remove this ugly kludge. o Remove stale/bogus opt_foo.h files. These are left over from by-gone resources. And they point to the need, yet again, to improve the build system so meta information is only in one place. Submitted by: ru Reviewed by: bde Approved by: re@ (jhb)
28 lines
425 B
Makefile
28 lines
425 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/nwfs
|
|
|
|
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
|
|
|
|
.if defined(VNPRINT)
|
|
CFLAGS+= -DVNPRINT
|
|
.endif
|
|
|
|
opt_ncp.h:
|
|
echo "#define NCP 1" > ${.TARGET}
|
|
|
|
load: nwfs.ko
|
|
kldload ./nwfs.ko
|
|
|
|
unload:
|
|
@(if kldunload nwfs; then true; else true; fi)
|
|
|
|
deinstall:
|
|
rm -f /modules/nwfs.ko
|
|
|
|
.include <bsd.kmod.mk>
|