ed0d921874
Sponsored by: The FreeBSD Foundation
28 lines
419 B
Makefile
28 lines
419 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= jail
|
|
MAN= jail.8 jail.conf.5
|
|
SRCS= jail.c command.c config.c state.c jailp.h jaillex.l jailparse.y y.tab.h
|
|
|
|
LIBADD= jail kvm util l
|
|
|
|
PACKAGE=jail
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
YFLAGS+=-v
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
CLEANFILES= y.output
|
|
|
|
.include <bsd.prog.mk>
|