X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dict%2FMakefile.am;h=4441f0fa3e51b7048b9a8ab394f26b73f8e21df7;hp=d6e99c3cfa7d486980cc5988d2a10d5513a53b61;hb=dcda88860b03641b6900d43135ca769f005105e8;hpb=e5e4f1de02396b2cfab488f8e5918853e96d6b53 diff --git a/dict/Makefile.am b/dict/Makefile.am index d6e99c3..4441f0f 100644 --- a/dict/Makefile.am +++ b/dict/Makefile.am @@ -1,16 +1,31 @@ -## $Id: Makefile.am,v 1.5 2002-08-17 08:00:27 adam Exp $ -noinst_LIBRARIES = libdict.a +noinst_LTLIBRARIES = libidzebra-dict.la noinst_PROGRAMS = dicttest dictext +check_PROGRAMS = scantest -INCLUDES = -I$(srcdir)/../include @YAZINC@ +TESTS = $(check_PROGRAMS) -LDADD = libdict.a ../bfile/libbfile.a ../dfa/libdfa.a ../util/libutil.a $(YAZLIB) $(TCL_LIB) +AM_CPPFLAGS = -I$(srcdir)/../include $(YAZINC) -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 +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 +