freebsd-dev/sys/modules/nwfs/Makefile
Bruce Evans 6f940b3847 Removed special rules for building and cleaning device interface files
and empty options files.  The rules are now generated automatically in
bsd.kmod.mk.  Cleaned up related things ($S and ${CLEANFILES}).
1999-11-28 18:53:47 +00:00

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>