f2fs-tools: add library version info
authorJaegeuk Kim <jaegeuk@kernel.org>
Wed, 9 Dec 2015 18:30:25 +0000 (10:30 -0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 9 Dec 2015 19:08:45 +0000 (11:08 -0800)
commit85aa525057e1314feb00aa7a06d620a42f1b4975
tree2cdfaed6b443788e5509658182f29d443cb8c81b
parentd6b0f7091ab1da686e1485c0f05227ce85f3e05e
f2fs-tools: add library version info

This patch gives the version info for two libraries.

mkfs/libf2fs_format.la
lib/libf2fs.la

The versioning rule should be:

1. Start with version information of '0:0:0' for each libtool library.
2. Update the version information only immediately before a public release of
   your software. More frequent updates are unnecessary, and only guarantee
   that the current interface number gets larger faster.
2. If the library source code has changed at all since the last update, then
   increment revision (c:r:a) becomes (c:r+1:a).
3. If any interfaces have been added, removed, or changed since the last update,
   increment current, and set revision to 0.
4. If any interfaces have been added since the last public release, then
   increment age.
5. If any interfaces have been removed or changed since the last public release,
   then set age to 0.

quoted from:
http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
configure.ac
lib/Makefile.am
mkfs/Makefile.am