Add module building Makefile entries for NFSv4 and POSIX.1e ACL handling.

This commit is contained in:
Adrian Chadd 2012-03-13 20:28:42 +00:00
parent a9a282f672
commit 9124ddeb4a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232937
3 changed files with 20 additions and 0 deletions

View File

@ -11,6 +11,8 @@ SUBDIR= ${_3dfx} \
accf_data \
accf_dns \
accf_http \
acl_nfs4 \
acl_posix1e \
${_acpi} \
ae \
${_aesni} \

View File

@ -0,0 +1,9 @@
# $FreeBSD$
.include <bsd.own.mk>
.PATH: ${.CURDIR}/../../kern
KMOD= acl_nfs4
SRCS= vnode_if.h subr_acl_nfs4.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,9 @@
# $FreeBSD$
.include <bsd.own.mk>
.PATH: ${.CURDIR}/../../kern
KMOD= acl_posix1e
SRCS= vnode_if.h subr_acl_posix1e.c
.include <bsd.kmod.mk>