opnsense-src/usr.sbin/ip6addrctl/Makefile
Zhenlei Huang b709f7b38c ip6addrctl(8): Teach ip6addrctl to attach and run itself in a jail
This will make it easier to manage address selection policies of vnet
jails, especially for those light weighted OCI containers or slim jails.

Requested by:	dfr
Reviewed by:	dfr, markj
MFC after:	1 week
Relnotes:	yes
Differential Revision:	https://reviews.freebsd.org/D48679

(cherry picked from commit 6dcdd79a251b5e62ff9ce562ad451e92dec39408)
2025-02-06 23:38:04 +08:00

12 lines
161 B
Makefile

.include <src.opts.mk>
PACKAGE= runtime
PROG= ip6addrctl
MAN= ip6addrctl.8
.if ${MK_JAIL} != "no"
CFLAGS+= -DJAIL
LIBADD+= jail
.endif
.include <bsd.prog.mk>