]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/jls/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / jls / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   jls
6 MAN=    jls.8
7 DPADD=  ${LIBJAIL}
8 LDADD=  -ljail
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>