mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
15ede76031
provoke errors trying to query options not available. Make it possible to compile out INET or INET6 only parts. Reviewed by: jamie Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems MFC after: 10 days
18 lines
244 B
Makefile
18 lines
244 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= jail
|
|
MAN= jail.8
|
|
DPADD= ${LIBJAIL} ${LIBUTIL}
|
|
LDADD= -ljail -lutil
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|