From: mdw Date: Sat, 17 Jun 2000 10:39:43 +0000 (+0000) Subject: Various new source files. X-Git-Tag: 2.0.4~175 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/commitdiff_plain/7b9799079255176c03537afd89a67ce7f6c2811d?ds=sidebyside Various new source files. --- diff --git a/Makefile.am b/Makefile.am index 7a96c20..fb317e7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-Makefile-*- ## -## $Id: Makefile.am,v 1.19 1999/12/12 17:37:03 mdw Exp $ +## $Id: Makefile.am,v 1.20 2000/06/17 10:39:43 mdw Exp $ ## ## Building the distribution ## @@ -29,6 +29,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.20 2000/06/17 10:39:43 mdw +## Various new source files. +## ## Revision 1.19 1999/12/12 17:37:03 mdw ## Version bump. ## @@ -102,24 +105,26 @@ lib_LTLIBRARIES = libmLib.la libexec_PROGRAMS = bres pkginclude_HEADERS = \ - alloc.h bits.h exc.h quis.h report.h sub.h trace.h track.h \ + alloc.h arena.h bits.h exc.h quis.h report.h sub.h trace.h track.h \ darray.h dstr.h dspool.h hash.h sym.h crc32.h \ env.h fdflags.h lock.h \ - bres.h conn.h lbuf.h ident.h sel.h selbuf.h sig.h tv.h \ + bres.h conn.h lbuf.h ident.h pkbuf.h sel.h selbuf.h selpk.h sig.h \ + tv.h \ base64.h mdwopt.h str.h testrig.h url.h ## --- Things to put in the library --- -libmLib_la_LDFLAGS = -version-info 7:2:6 +libmLib_la_LDFLAGS = -version-info 2:0:0 ## Middle number is the patchlevel. Final number is the minor version. The ## difference between the first and last numbers is major version. libmLib_la_SOURCES = \ - alloc.c exc.c quis.c pquis.c report.c sub.c trace.c traceopt.c \ - track.c \ + alloc.c arena.c exc.c quis.c pquis.c report.c sub.c trace.c \ + traceopt.c track.c \ darray.c dstr.c dputf.c dspool.c hash.c sym.c crc32.c \ env.c fdflags.c lock.c \ - bres.c conn.c lbuf.c ident.c sel.c selbuf.c sig.c tv.c \ + bres.c conn.c lbuf.c ident.c pkbuf.c sel.c selbuf.c selpk.c sig.c \ + tv.c \ base64.c mdwopt.c str.c testrig.c url.c ## --- Test code ---