X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dict%2FMakefile.am;h=ff21250dd2d762b7f5c7582892a111984f067aff;hp=4552c6ec5e01720c55b10aeac519acb8d56557bb;hb=05b9b8ed020c5bfa48a913d6a2e2b50ddf1bab8e;hpb=50dbe0d73a13e5c700124b4511251eaeecc5342a diff --git a/dict/Makefile.am b/dict/Makefile.am index 4552c6e..ff21250 100644 --- a/dict/Makefile.am +++ b/dict/Makefile.am @@ -1,16 +1,26 @@ -## $Id: Makefile.am,v 1.3 2001-10-15 20:57:18 adam Exp $ +## $Id: Makefile.am,v 1.11 2004-12-08 12:23:08 adam Exp $ -noinst_LIBRARIES = libdict.a +lib_LTLIBRARIES = libidzebra-dict.la noinst_PROGRAMS = dicttest dictext +check_PROGRAMS = scantest -INCLUDES = -I$(srcdir)/../include -CFLAGS = @YAZINC@ -LDADD = libdict.a ../bfile/libbfile.a ../dfa/libdfa.a ../util/libutil.a @YAZLIB@ @LIBS@ +TESTS = $(check_PROGRAMS) -libdict_a_SOURCES = scan.c dopen.c dclose.c drdwr.c open.c close.c insert.c \ - lookup.c lookupec.c lookgrep.c delete.c dcompact.c +AM_CPPFLAGS = -I$(srcdir)/../include $(YAZINC) + +LDADD = libidzebra-dict.la \ + ../bfile/libidzebra-bfile.la \ + ../dfa/libidzebra-dfa.la \ + ../util/libidzebra-util.la \ + $(YAZLALIB) + +libidzebra_dict_la_SOURCES = dopen.c dclose.c drdwr.c open.c close.c \ + insert.c lookup.c lookupec.c lookgrep.c delete.c scan.c dcompact.c \ + dict-p.h dicttest_SOURCES = dicttest.c dictext_SOURCES = dictext.c +scantest_SOURCES = scantest.c +