Added test t13 which illustrates the resource API and tests it.
[idzebra-moved-to-github.git] / test / api / Makefile.am
1 # $Id: Makefile.am,v 1.30 2005-08-17 21:30:31 adam Exp $
2
3 noinst_PROGRAMS = testclient
4 testclient_SOURCES = testclient.c 
5
6 simpletests = t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13
7 safaritests = safari1
8 check_PROGRAMS = $(simpletests) $(safaritests)
9 TESTS = $(check_PROGRAMS)
10
11 EXTRA_DIST=zebra.cfg zebra6.cfg zebra8.cfg zebrazv.cfg safari.cfg
12
13 noinst_LIBRARIES = libtestlib.a
14
15 libtestlib_a_SOURCES = testlib.c testlib.h
16
17 t1_SOURCES = t1.c
18 t2_SOURCES = t2.c
19 t3_SOURCES = t3.c
20 t4_SOURCES = t4.c
21 t5_SOURCES = t5.c
22 t6_SOURCES = t6.c
23 t7_SOURCES = t7.c
24 t8_SOURCES = t8.c
25 t9_SOURCES = t9.c rankingrecords.h
26 t10_SOURCES = t10.c rankingrecords.h
27 t11_SOURCES = t11.c
28 t12_SOURCES = t12.c
29 t13_SOURCES = t13.c
30
31 safari1_SOURCES = safari1.c testlib.c
32
33 AM_CPPFLAGS = -I$(top_srcdir)/include $(YAZINC)
34
35 zebralibs = \
36  ../../index/libidzebra-api.la \
37  ../../rset/libidzebra-rset.la \
38  ../../recctrl/libidzebra-recctrl.la \
39  ../../dict/libidzebra-dict.la  \
40  ../../isams/libidzebra-isams.la \
41  ../../isamc/libidzebra-isamc.la \
42  ../../isamb/libidzebra-isamb.la \
43  ../../data1/libidzebra-data1.la \
44  ../../bfile/libidzebra-bfile.la \
45  ../../dfa/libidzebra-dfa.la \
46  ../../util/libidzebra-util.la
47
48 LDADD = libtestlib.a $(zebralibs) $(YAZLALIB)
49