4a7f3dcea5
avg/median/stddev bars onto separate lines for readability if the ranges overlapped. In 2005, ministat was extended to support more than 2 datasets, but the -s code was not updated. It will coredump if run with -s and >2 sets. PR: 82909 Submitted by: Dan Nelson <dnelson@allantgroup.com>
16 lines
410 B
Makefile
16 lines
410 B
Makefile
# $FreeBSD$
|
|
PROG= ministat
|
|
NO_MAN=
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: ${PROG}
|
|
./${PROG} < ${.CURDIR}/chameleon
|
|
./${PROG} ${.CURDIR}/chameleon
|
|
./${PROG} ${.CURDIR}/chameleon ${.CURDIR}/iguana
|
|
./${PROG} -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana
|
|
./${PROG} -s -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana
|
|
./${PROG} -s -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana ${.CURDIR}/iguana
|