b3803c0021
of data from benchmarks etc. Implements "Student's t" for various confidence levels, defaults to 95%. If your benchmarks are not significant at the 95% confidence level, we don't want to hear about it.
14 lines
263 B
Makefile
14 lines
263 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
|