a191ba5195
Reduce overlinking
17 lines
206 B
Makefile
17 lines
206 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= jls
|
|
MAN= jls.8
|
|
LIBADD= jail
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|