diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-29 06:17:37 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-29 06:17:37 -0400 |
commit | d073a7e8a599def9c6dae0f98903d9b59766e9fc (patch) | |
tree | 6c82d1db9070e3b32f5856f49f5344f75a1f5565 /Makefile.am | |
parent | 4518ea95408e2d5fe90a87159b88bb41734ec1dc (diff) | |
download | fork-ledger-d073a7e8a599def9c6dae0f98903d9b59766e9fc.tar.gz fork-ledger-d073a7e8a599def9c6dae0f98903d9b59766e9fc.tar.bz2 fork-ledger-d073a7e8a599def9c6dae0f98903d9b59766e9fc.zip |
Move the value expression code into libamounts, since it really belongs with
value_t, rather than the rest of Ledger proper.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile.am b/Makefile.am index e1aaa45c..9149847c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,12 +14,18 @@ lib_LTLIBRARIES = libamounts.la libledger.la libamounts_la_CPPFLAGS = libamounts_la_SOURCES = \ + utils.cc \ + times.cc \ + mask.cc \ amount.cc \ commodity.cc \ balance.cc \ value.cc \ - times.cc \ - utils.cc + token.cc \ + parser.cc \ + op.cc \ + expr.cc \ + scope.cc if HAVE_EXPAT libamounts_la_CPPFLAGS += -DHAVE_EXPAT=1 endif @@ -38,12 +44,6 @@ endif libledger_la_CPPFLAGS = $(libamounts_la_CPPFLAGS) libledger_la_SOURCES = \ - mask.cc \ - token.cc \ - parser.cc \ - op.cc \ - expr.cc \ - scope.cc \ format.cc \ \ journal.cc \ @@ -81,8 +81,9 @@ pkginclude_HEADERS = \ balance.h \ balpair.h \ value.h \ - times.h \ utils.h \ + times.h \ + mask.h \ error.h \ \ expr.h \ @@ -92,7 +93,6 @@ pkginclude_HEADERS = \ scope.h \ predicate.h \ format.h \ - mask.h \ \ journal.h \ report.h \ |