diff options
author | John Wiegley <johnw@newartisans.com> | 2008-05-08 02:19:44 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-05-08 02:50:19 -0400 |
commit | d159501993cfd0215f94f0e5e16796558417b681 (patch) | |
tree | b0e2b9e9e707dd3f71683e81b9c9c3a1f8b47f86 /Makefile.am | |
parent | 7ecbf3e125481a02c541f9eb3ed795ac3e245541 (diff) | |
download | fork-ledger-d159501993cfd0215f94f0e5e16796558417b681.tar.gz fork-ledger-d159501993cfd0215f94f0e5e16796558417b681.tar.bz2 fork-ledger-d159501993cfd0215f94f0e5e16796558417b681.zip |
The code is compiling again, but it's far from being able to run yet.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 7ced6a31..fe7cb3fe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,14 +15,16 @@ lib_LTLIBRARIES = libamounts.la libledger.la libamounts_la_CPPFLAGS = libamounts_la_SOURCES = \ amount.cc \ + commodity.cc \ balance.cc \ - value.cc + value.cc \ + times.cc \ + utils.cc if HAVE_BOOST_PYTHON libamounts_la_CPPFLAGS += -DUSE_BOOST_PYTHON=1 endif if DEBUG libamounts_la_CPPFLAGS += -DDEBUG_MODE -libamounts_la_SOURCES += utils.cc endif libledger_la_CPPFLAGS = @@ -38,7 +40,6 @@ libledger_la_SOURCES = \ option.cc \ parser.cc \ qif.cc \ - quotes.cc \ reconcile.cc \ report.cc \ startup.cc \ @@ -46,6 +47,7 @@ libledger_la_SOURCES = \ valexpr.cc \ walk.cc \ xml.cc +# quotes.cc this is currently not being included if HAVE_EXPAT libledger_la_CPPFLAGS += -DHAVE_EXPAT=1 libledger_la_SOURCES += gnucash.cc @@ -67,11 +69,12 @@ pkginclude_HEADERS = \ acconf.h \ \ amount.h \ + commodity.h \ balance.h \ - datetime.h \ + balpair.h \ value.h \ - debug.h \ - util.h \ + times.h \ + utils.h \ \ binary.h \ config.h \ @@ -91,7 +94,6 @@ pkginclude_HEADERS = \ reconcile.h \ report.h \ textual.h \ - timing.h \ valexpr.h \ walk.h \ xml.h |