Added test t13 which illustrates the resource API and tests it.
[idzebra-moved-to-github.git] / test / api / Makefile.am
index 136e300..356159b 100644 (file)
@@ -1,12 +1,18 @@
-# $Id: Makefile.am,v 1.14 2004-08-24 10:37:19 adam Exp $
+# $Id: Makefile.am,v 1.30 2005-08-17 21:30:31 adam Exp $
 
 noinst_PROGRAMS = testclient
-testclient_SOURCES = testclient.c
+testclient_SOURCES = testclient.c 
 
-check_PROGRAMS = t1 t2 t3 t4 t5 t6
+simpletests = t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13
+safaritests = safari1
+check_PROGRAMS = $(simpletests) $(safaritests)
 TESTS = $(check_PROGRAMS)
 
-EXTRA_DIST=zebra.cfg zebra6.cfg
+EXTRA_DIST=zebra.cfg zebra6.cfg zebra8.cfg zebrazv.cfg safari.cfg
+
+noinst_LIBRARIES = libtestlib.a
+
+libtestlib_a_SOURCES = testlib.c testlib.h
 
 t1_SOURCES = t1.c
 t2_SOURCES = t2.c
@@ -14,21 +20,30 @@ t3_SOURCES = t3.c
 t4_SOURCES = t4.c
 t5_SOURCES = t5.c
 t6_SOURCES = t6.c
+t7_SOURCES = t7.c
+t8_SOURCES = t8.c
+t9_SOURCES = t9.c rankingrecords.h
+t10_SOURCES = t10.c rankingrecords.h
+t11_SOURCES = t11.c
+t12_SOURCES = t12.c
+t13_SOURCES = t13.c
+
+safari1_SOURCES = safari1.c testlib.c
 
 AM_CPPFLAGS = -I$(top_srcdir)/include $(YAZINC)
 
 zebralibs = \
+ ../../index/libidzebra-api.la \
  ../../rset/libidzebra-rset.la \
+ ../../recctrl/libidzebra-recctrl.la \
  ../../dict/libidzebra-dict.la  \
  ../../isams/libidzebra-isams.la \
  ../../isamc/libidzebra-isamc.la \
  ../../isamb/libidzebra-isamb.la \
- ../../recctrl/libidzebra-recctrl.la \
  ../../data1/libidzebra-data1.la \
  ../../bfile/libidzebra-bfile.la \
  ../../dfa/libidzebra-dfa.la \
- ../../util/libidzebra-util.la \
- ../../index/libidzebra-api.la
+ ../../util/libidzebra-util.la
 
-LDADD = $(zebralibs) $(YAZLALIB) $(TCL_LIB)
+LDADD = libtestlib.a $(zebralibs) $(YAZLALIB)