X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/blobdiff_plain/c5775f49c4b3ff27916c9425a0bb614df4bde3e4..ad61a8f85b8e2dc5b3bbfe0629480e635af8bd3f:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 081f74d..c583808 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-Makefile-*- ## -## $Id: Makefile.am,v 1.37 2003/10/12 14:44:46 mdw Exp $ +## $Id: Makefile.am,v 1.41 2003/11/29 11:59:17 mdw Exp $ ## ## Building the distribution ## @@ -29,6 +29,18 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.41 2003/11/29 11:59:17 mdw +## Various stuff. +## +## Revision 1.40 2003/11/10 10:01:14 mdw +## Various Debian fixes. +## +## Revision 1.39 2003/11/09 13:48:43 mdw +## Debianization\! +## +## Revision 1.38 2003/10/12 14:54:18 mdw +## Version bump. +## ## Revision 1.37 2003/10/12 14:44:46 mdw ## Various fixes. ## @@ -140,14 +152,14 @@ pkginclude_HEADERS = \ trace.h track.h unihash.h \ pool.h \ atom.h assoc.h darray.h dstr.h dspool.h hash.h sym.h crc32.h \ - env.h fdflags.h fwatch.h lock.h \ + env.h fdflags.h fdpass.h fwatch.h lock.h \ bres.h conn.h lbuf.h ident.h pkbuf.h sel.h selbuf.h selpk.h sig.h \ tv.h \ base64.h hex.h mdwopt.h str.h testrig.h url.h ## --- Things to put in the library --- -libmLib_la_LDFLAGS = -version-info 2:1:0 +libmLib_la_LDFLAGS = -version-info 2:2:0 ## Middle number is the patchlevel. Final number is the minor version. The ## difference between the first and last numbers is major version. @@ -157,7 +169,7 @@ libmLib_la_SOURCES = \ pool.c pool-file.c pool-sub.c \ atom.c assoc.c darray.c dstr.c dputf.c dspool.c hash.c sym.c \ crc32.c crc32-tab.c \ - env.c fdflags.c fwatch.c lock.c \ + env.c fdflags.c fdpass.c fwatch.c lock.c \ bres.c conn.c lbuf.c ident.c pkbuf.c sel.c selbuf.c selpk.c sig.c \ tv.c \ base64.c hex.c mdwopt.c str.c testrig.c url.c @@ -167,7 +179,8 @@ BUILT_SOURCES = crc32-tab.c crc32-tab.c: crc-mktab ./crc-mktab \ -p0x04c11db7 -b32 -B8 -r \ - -c -scrc32_table -icrc32.h -tuint32 -ocrc32-tab.c + -c -scrc32_table -icrc32.h -tuint32 -ocrc32-tab.c.new + mv crc32-tab.c.new crc32-tab.c crc_mktab_SOURCES = crc-mktab.c mdwopt.c quis.c pquis.c report.c str.c @@ -279,6 +292,8 @@ uninstall-man: CLEANFILES = $(TEST_CLEAN) crc32-tab.c DISTCLEANFILES = libtool -EXTRA_DIST = $(TEST_DIST) maninst +EXTRA_DIST = \ + $(TEST_DIST) maninst \ + debian/rules debian/copyright debian/control debian/changelog ##----- That's all, folks ---------------------------------------------------