diff options
author | Jan Safranek <jsafrane@redhat.com> | 2009-03-26 15:10:09 +0100 |
---|---|---|
committer | Jan Safranek <jsafrane@redhat.com> | 2009-03-26 15:10:09 +0100 |
commit | b5a9d8553bd1fa47ba354bf52b4adc03d070b1e3 (patch) | |
tree | 4960a21e5ed8778d8554dec231421bbfa12c4f80 /include/Makefile.in | |
parent | 5d17fc1d7f60abd35f852706bef06411a963caa3 (diff) | |
download | libcg-b5a9d8553bd1fa47ba354bf52b4adc03d070b1e3.tar.gz libcg-b5a9d8553bd1fa47ba354bf52b4adc03d070b1e3.tar.xz libcg-b5a9d8553bd1fa47ba354bf52b4adc03d070b1e3.zip |
Rework the way how so version is defined
Make the shared object version a bit more usable, the notation with double
colons cannot be used on different places (see next patch).
Also run automake && autoconf to refresh the generated stuff.
Signed-off-by: Jan Safranek <jsafrane@redhat.com>
Diffstat (limited to 'include/Makefile.in')
-rw-r--r-- | include/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/Makefile.in b/include/Makefile.in index 7285a1d..aa26b42 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -94,7 +94,9 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ -LIBRARY_VERSION = @LIBRARY_VERSION@ +LIBRARY_VERSION_MAJOR = @LIBRARY_VERSION_MAJOR@ +LIBRARY_VERSION_MINOR = @LIBRARY_VERSION_MINOR@ +LIBRARY_VERSION_RELEASE = @LIBRARY_VERSION_RELEASE@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ @@ -181,9 +183,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/Makefile'; \ cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/Makefile + $(AUTOMAKE) --foreign include/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ |