]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - usr.sbin/jail/Makefile
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.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>