]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/jls/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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>