ed0d921874
Sponsored by: The FreeBSD Foundation
19 lines
223 B
Makefile
19 lines
223 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= jls
|
|
MAN= jls.8
|
|
LIBADD= jail xo
|
|
|
|
PACKAGE=jail
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|