chiark / gitweb /
Debianization\!
[mLib] / Makefile.am
index 081f74df710339d2c2981e0abf69389c9a7a0855..54a7a52c5aa48077d5a06d3ea7ae58e60438246e 100644 (file)
@@ -1,6 +1,6 @@
 ## -*-Makefile-*-
 ##
-## $Id: Makefile.am,v 1.37 2003/10/12 14:44:46 mdw Exp $
+## $Id: Makefile.am,v 1.39 2003/11/09 13:48:43 mdw Exp $
 ##
 ## Building the distribution
 ##
 ##----- Revision history ----------------------------------------------------
 ##
 ## $Log: Makefile.am,v $
+## 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.
 ##
@@ -147,7 +153,7 @@ pkginclude_HEADERS = \
 
 ## --- 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.
 
@@ -167,7 +173,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 +286,7 @@ 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 ---------------------------------------------------