]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.sbin/jls/Makefile
MFC r286887: Using the error return code documented in the comment.
[FreeBSD/stable/8.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 WARNS?= 6
11
12 .if ${MK_INET6_SUPPORT} != "no"
13 CFLAGS+= -DINET6
14 .endif
15 .if ${MK_INET_SUPPORT} != "no"
16 CFLAGS+= -DINET
17 .endif
18
19 .include <bsd.prog.mk>