diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-03 01:38:32 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-03 01:38:32 -0400 |
commit | 40c02b7bf9a55e73f7f6452327ce7ae3b046547f (patch) | |
tree | 34a9a1f7b70a459eb6f7ba12e5b4866536ba8794 | |
parent | f74247d15a4daa7fe164e18f90ea31072e92472c (diff) | |
download | ledger-40c02b7bf9a55e73f7f6452327ce7ae3b046547f.tar.gz ledger-40c02b7bf9a55e73f7f6452327ce7ae3b046547f.tar.bz2 ledger-40c02b7bf9a55e73f7f6452327ce7ae3b046547f.zip |
Another fix to the link order.
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 2f9eb77f..84f931fb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -350,7 +350,7 @@ math_tests_SOURCES = \ test/unit/t_balance.h math_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -math_tests_LDADD = $(util_tests_LDADD) libledger_math.la +math_tests_LDADD = libledger_math.la $(util_tests_LDADD) expr_tests_SOURCES = \ test/UnitTests.cc \ @@ -360,7 +360,7 @@ expr_tests_SOURCES = \ test/unit/t_expr.h expr_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -expr_tests_LDADD = $(math_tests_LDADD) libledger_expr.la +expr_tests_LDADD = libledger_expr.la $(math_tests_LDADD) data_tests_SOURCES = \ test/UnitTests.cc \ @@ -368,7 +368,7 @@ data_tests_SOURCES = \ test/data_tests.cc data_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -data_tests_LDADD = $(math_tests_LDADD) libledger_data.la +data_tests_LDADD = libledger_data.la $(math_tests_LDADD) parse_tests_SOURCES = \ test/UnitTests.cc \ @@ -376,7 +376,7 @@ parse_tests_SOURCES = \ test/parse_tests.cc parse_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -parse_tests_LDADD = $(math_tests_LDADD) libledger_parse.la +parse_tests_LDADD = libledger_parse.la $(math_tests_LDADD) report_tests_SOURCES = \ test/UnitTests.cc \ @@ -384,7 +384,7 @@ report_tests_SOURCES = \ test/report_tests.cc report_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -report_tests_LDADD = $(math_tests_LDADD) libledger_report.la +report_tests_LDADD = libledger_report.la $(math_tests_LDADD) all_tests_sources = \ $(util_tests_SOURCES) \ |