c6063d0da8
from the latter.
18 lines
225 B
Makefile
18 lines
225 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= jls
|
|
MAN= jls.8
|
|
DPADD= ${LIBJAIL}
|
|
LDADD= -ljail
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|