X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dict%2FMakefile.am;h=4441f0fa3e51b7048b9a8ab394f26b73f8e21df7;hp=9fd786cd39ec85d425321397a05c00fcfa56652b;hb=0dedb6a7a6a0f0ddaf56cb0673978fdd85e64be1;hpb=85728191a4dc93d31e3d1bd0ddc2ae60381ae6ba diff --git a/dict/Makefile.am b/dict/Makefile.am index 9fd786c..4441f0f 100644 --- a/dict/Makefile.am +++ b/dict/Makefile.am @@ -1,15 +1,31 @@ -## $Id: Makefile.am,v 1.4 2002-04-12 14:40:42 adam Exp $ -noinst_LIBRARIES = libdict.a +noinst_LTLIBRARIES = libidzebra-dict.la noinst_PROGRAMS = dicttest dictext +check_PROGRAMS = scantest -INCLUDES = -I$(srcdir)/../include @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 + + +clean-local: + -rm -rf *.LCK + -rm -rf *.log + -rm -rf *.mf +