freebsd-dev/usr.bin/dpv/Makefile
Devin Teske 041394f38a Add new libraries/utilities for data throughput visualization.
dpv(3): dialog progress view library
dpv(1): stream data from stdin or multiple paths with dialog progress view
figpar(3): configuration file parsing library

Reviews:	D714
Reviewed by:	jelischer, shurd
Discussed at:	MeetBSD California 2014 Vendor/Dev Summit
Discussed on:	-current
MFC after:	21 days
X-MFC-to:	stable/10 stable/9
2014-11-04 23:46:01 +00:00

13 lines
204 B
Makefile

# $FreeBSD$
PROG= dpv
CFLAGS+= -I${.CURDIR}
DPADD+= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSES} ${LIBUTIL}
LDADD+= -ldpv -ldialog -lfigpar -lncurses -lutil
WARNS?= 6
.include <bsd.prog.mk>