]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - usr.sbin/jail/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / usr.sbin / jail / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   jail
6 MAN=    jail.8
7 DPADD=  ${LIBJAIL} ${LIBUTIL}
8 LDADD=  -ljail -lutil
9
10 .if ${MK_INET6_SUPPORT} != "no"
11 CFLAGS+= -DINET6
12 .endif
13 .if ${MK_INET_SUPPORT} != "no"
14 CFLAGS+= -DINET
15 .endif
16
17 .include <bsd.prog.mk>