]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - usr.sbin/jls/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.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>