freebsd-src/lib/libdpv/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

17 lines
257 B
Makefile

# $FreeBSD$
LIB= dpv
SHLIB_MAJOR= 1
INCS= dpv.h
MAN= dpv.3
MLINKS= dpv.3 dpv_free.3
CFLAGS+= -I${.CURDIR}
LDFLAGS+= -ldialog -lfigpar -lncurses -lutil
SRCS= dialog_util.c dialogrc.c dprompt.c dpv.c status.c util.c
WARNS?= 6
.include <bsd.lib.mk>