6f940b3847
and empty options files. The rules are now generated automatically in bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
34 lines
476 B
Makefile
34 lines
476 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../nwfs
|
|
|
|
KMOD= nwfs
|
|
KMODDEPS= ncp
|
|
|
|
SRCS= nwfs_node.c nwfs_ioctl.c nwfs_io.c nwfs_vfsops.c nwfs_vnops.c \
|
|
nwfs_subr.c opt_ncp.h opt_nwfs.h opt_vmpage.h
|
|
|
|
VFS_KLD=true
|
|
|
|
NOMAN=true
|
|
|
|
CFLAGS+= -DNWFS
|
|
|
|
.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>
|