Reversed link order of Ledger's own libraries.
This commit is contained in:
parent
2a0f8d5099
commit
9261f56639
1 changed files with 20 additions and 15 deletions
27
Makefile.am
27
Makefile.am
|
|
@ -2,13 +2,13 @@ VERSION = 3.0
|
||||||
EXTRA_DIST = autogen.sh contrib
|
EXTRA_DIST = autogen.sh contrib
|
||||||
|
|
||||||
lib_LTLIBRARIES = \
|
lib_LTLIBRARIES = \
|
||||||
libledger_util.la \
|
libledger_extra.la \
|
||||||
libledger_math.la \
|
|
||||||
libledger_expr.la \
|
|
||||||
libledger_data.la \
|
|
||||||
libledger_parse.la \
|
|
||||||
libledger_report.la \
|
libledger_report.la \
|
||||||
libledger_extra.la
|
libledger_parse.la \
|
||||||
|
libledger_data.la \
|
||||||
|
libledger_expr.la \
|
||||||
|
libledger_math.la \
|
||||||
|
libledger_util.la
|
||||||
|
|
||||||
lib_cppflags = -I$(srcdir)/src -I$(srcdir)/lib \
|
lib_cppflags = -I$(srcdir)/src -I$(srcdir)/lib \
|
||||||
-I$(srcdir)/lib/utfcpp/source \
|
-I$(srcdir)/lib/utfcpp/source \
|
||||||
|
|
@ -278,11 +278,16 @@ install-exec-hook:
|
||||||
ledger_so_SOURCES = $(all_sources)
|
ledger_so_SOURCES = $(all_sources)
|
||||||
ledger_so_DEPENDENCIES = $(lib_LTLIBRARIES)
|
ledger_so_DEPENDENCIES = $(lib_LTLIBRARIES)
|
||||||
|
|
||||||
PYLIBS = ledger_util ledger_math ledger_expr \
|
PYLIBS = ledger_python \
|
||||||
ledger_data ledger_parse \
|
ledger_extra \
|
||||||
ledger_report ledger_extra \
|
ledger_report \
|
||||||
ledger_python \
|
ledger_parse \
|
||||||
gmp mpfr \
|
ledger_data \
|
||||||
|
ledger_expr \
|
||||||
|
ledger_math \
|
||||||
|
ledger_util \
|
||||||
|
gmp \
|
||||||
|
mpfr \
|
||||||
boost_system$(BOOST_SUFFIX) \
|
boost_system$(BOOST_SUFFIX) \
|
||||||
boost_date_time$(BOOST_SUFFIX) \
|
boost_date_time$(BOOST_SUFFIX) \
|
||||||
boost_filesystem$(BOOST_SUFFIX) \
|
boost_filesystem$(BOOST_SUFFIX) \
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue