diff options
| author | Shivank Garg <shivank@freebsd.org> | 2023-07-25 20:27:06 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2023-07-26 00:07:57 +0000 |
| commit | 215bab7924f6c8e133a96431b3e2176d5fae1eff (patch) | |
| tree | 78c32ee058e2181259105895e111211a534bd038 /sys/modules | |
| parent | a1b67573130114257fdd443c4ec9b54fbe2e5843 (diff) | |
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/mac_ipacl/Makefile | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 20945548604f..2f9e9ec0f931 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -225,6 +225,7 @@ SUBDIR= \ ${_mac_bsdextended} \ ${_mac_ddb} \ ${_mac_ifoff} \ + ${_mac_ipacl} \ ${_mac_lomac} \ ${_mac_mls} \ ${_mac_none} \ @@ -581,6 +582,7 @@ _mac_bsdextended= mac_bsdextended _mac_ddb= mac_ddb .endif _mac_ifoff= mac_ifoff +_mac_ipacl= mac_ipacl _mac_lomac= mac_lomac _mac_mls= mac_mls _mac_none= mac_none diff --git a/sys/modules/mac_ipacl/Makefile b/sys/modules/mac_ipacl/Makefile new file mode 100644 index 000000000000..3ecc7564e70c --- /dev/null +++ b/sys/modules/mac_ipacl/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/security/mac_ipacl + +KMOD= mac_ipacl +SRCS= mac_ipacl.c +SRCS+= opt_inet.h opt_inet6.h + +.include <bsd.kmod.mk> |
