X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=lib%2FMakefile.am;h=a6a4f57611d943cf774ad22248060f6d04d4323d;hp=d44ac1de4b1a45143da42b86529ef4dc8496054e;hb=9158f8e318f25cb16171433742950236cae96d36;hpb=3518888d1548b5f157909599122c757f29d92080 diff --git a/lib/Makefile.am b/lib/Makefile.am index d44ac1d..a6a4f57 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,8 +1,10 @@ -## $Id: Makefile.am,v 1.4 2000-04-06 12:32:56 adam Exp $ +## $Id: Makefile.am,v 1.14 2001-10-05 13:55:17 adam Exp $ -lib_LTLIBRARIES = libyaz.la +if ISTHR +extra=libyazthread.la +endif -bin_SCRIPTS = yaz-config +lib_LTLIBRARIES = libyaz.la $(extra) # If the line below is omitted the LINK variable is # not set in Makefile.in and it will NOT work .. @@ -11,23 +13,25 @@ EXTRA_libyaz_la_SOURCES=x.c # No real sources libyaz_la_SOURCES= -LDFLAGS=-version-info 0:0:0 +libyazthread_la_SOURCES=nmem.c statserv.c eventl.c + +$(srcdir)/nmem.c: $(top_srcdir)/util/nmem.c + cp $(top_srcdir)/util/nmem.c $(srcdir) + +$(srcdir)/statserv.c: $(top_srcdir)/server/statserv.c + cp $(top_srcdir)/server/statserv.c $(srcdir) + +$(srcdir)/eventl.c: $(top_srcdir)/server/eventl.c + cp $(top_srcdir)/server/eventl.c $(srcdir) + +LDFLAGS=-version-info 1:0:0 + +INCLUDES =-I$(top_srcdir)/include -I$(top_srcdir)/server @CFLAGSTHREADS@ + +bin_SCRIPTS = yaz-config -libyaz_la_LIBADD=../odr/libodr.la ../@ASNMODULE@/libasn.la \ +libyaz_la_LIBADD=../odr/libodr.la \ ../comstack/libcomstack.la ../server/libserver.la \ - ../zutil/libzutil.la ../util/libutil.la ../ccl/libccl.la \ - ../retrieval/libret.la @ILLLIB@ - -# Public libraries and header files -LIBDIR=$(exec_prefix)/lib -INCDIR=$(prefix)/include - -yaz-config: Makefile - @echo "#!/bin/sh" >yaz-config - @echo "# YAZ settings for developers" >>yaz-config - @echo "YAZBIN='$(bindir)'" >>yaz-config - @echo "YAZTAB='$(pkgdatadir)/tab'" >>yaz-config - @echo "YAZLIB='-L$(libdir) -lyaz $(LIBS)'" >>yaz-config - @echo "YAZINC='-I$(includedir)'" >>yaz-config - chmod +x yaz-config + ../zutil/libzutil.la ../util/libutil.la ../retrieval/libret.la \ + $(EXTRALIB)