mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
15 lines
227 B
Makefile
15 lines
227 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
|
|
|
|
.if defined(VNPRINT)
|
|
CFLAGS+= -DVNPRINT
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|