d8239e2877
Removed "deinstall" targets -- the idea is to provide the standard "deinstall" target.
19 lines
298 B
Makefile
19 lines
298 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}
|
|
|
|
.include <bsd.kmod.mk>
|