diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-14 11:09:06 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:49 -0400 |
commit | 77db7eb92f730af315d4bcdf831cc67acb386b58 (patch) | |
tree | 566a413e47d8d9f2f82d257c4ad3988c0a38d919 /Makefile.am | |
parent | 3cc14c70d47f6f7674b587eb08b9d0e02a90e662 (diff) | |
download | fork-ledger-77db7eb92f730af315d4bcdf831cc67acb386b58.tar.gz fork-ledger-77db7eb92f730af315d4bcdf831cc67acb386b58.tar.bz2 fork-ledger-77db7eb92f730af315d4bcdf831cc67acb386b58.zip |
Added initial support for using builders from the various parsers; at the moment is just uses the xml_writer_t builder to output the contents of the ledger journal as XML
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/Makefile.am b/Makefile.am index 07d69aa7..645e3b34 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,24 +41,15 @@ libledger_la_SOURCES = \ src/amount.cc \ src/balance.cc \ src/value.cc \ - \ - src/session.cc \ + src/xml.cc \ + src/xpath.cc \ + src/builder.cc \ src/journal.cc \ - src/binary.cc \ - src/qif.cc \ src/textual.cc \ - src/quotes.cc \ - src/csv.cc \ - src/derive.cc \ - src/emacs.cc \ - src/format.cc \ - src/reconcile.cc \ + src/transform.cc \ src/register.cc \ src/report.cc \ - src/transform.cc \ - src/xml.cc \ - src/xmlparse.cc \ - src/xpath.cc + src/session.cc #if HAVE_EXPAT #libledger_la_CPPFLAGS += -DHAVE_EXPAT=1 |