1905e4a3fd
Differential Revision: https://reviews.freebsd.org/D87 Reviewed by: jhb MFC after: 1 month Sponsored by: Sandvine Inc.
18 lines
222 B
Makefile
18 lines
222 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= iovctl
|
|
SRCS= iovctl.c parse.c validate.c
|
|
LIBADD= nv ucl m
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../contrib/libucl/include
|
|
|
|
WARNS?=6
|
|
|
|
MAN= \
|
|
iovctl.8 \
|
|
iovctl.conf.5 \
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.prog.mk>
|
|
|