blob: c75596978344db74a2d6334bc4af2f2f0381d3d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
TESTS_ENVIRONMENT = top_builddir=$(top_builddir);top_srcdir=$(top_srcdir)
EXTRA_DIST = \
test-ttf.sh \
test-pfa.sh \
test-pfb.sh \
test-otf.sh \
gen-pdfsample.sh
CONFTESTS=
if INCLUDE_TESTFONT
if INCLUDE_TTF
CONFTESTS += test-ttf.sh
endif
#if INCLUDE_PFA
#CONFTESTS += test-pfa.sh
#endif
if INCLUDE_PFB
CONFTESTS += test-pfb.sh
endif
#if INCLUDE_OTF
#CONFTESTS += test-otf.sh
#endif
endif
TESTS = $(CONFTESTS)
CLEANFILES = *.pdf
check_SCRIPTS = \
test-ttf.sh \
test-pfa.sh \
test-pfb.sh \
test-otf.sh \
gen-pdfsample.sh
|