573e036e31
avg/median/stddev bars onto two lines. Useful for datasets that overlap. Submitted by: Dan Nelson <dnelson@allantgroup.com>
15 lines
322 B
Makefile
15 lines
322 B
Makefile
# $FreeBSD$
|
|
PROG= ministat
|
|
NOMAN= yes
|
|
|
|
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
|