mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
16 lines
206 B
Makefile
16 lines
206 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= jls
|
|
MAN= jls.8
|
|
LIBADD= jail
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|