blob: 265504ce7ba69923fb5a2df5b290917abcc50f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
## Process this file with automake to produce Makefile.in.
if ENABLE_ENT_TEST
check_PROGRAMS = entest
endif
AM_CFLAGS=-Wall
entest_LDADD = -lm
entest_SOURCES = entest.c iso8859.c randtest.c chisq.c iso8859.h randtest.h
CLEANFILES = sample
MAINTAINERCLEANFILES = Makefile.in
if ENABLE_ENT_TEST
check-local:
./entest -t ${srcdir}/entitle.gif
../src/haveged -n 16384k -v 1 $*
./entest -vf sample
endif
|