diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-23 08:57:36 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-23 08:57:36 -0400 |
commit | 632a37034a4d3a3cc2ad2bb786709c2497c5c97f (patch) | |
tree | c5145b694de1912fac81b244bdf18efa3e6fe57f | |
parent | ec31074d2ad5a1460cdb9875a778aa963612fc50 (diff) | |
download | ledger-632a37034a4d3a3cc2ad2bb786709c2497c5c97f.tar.gz ledger-632a37034a4d3a3cc2ad2bb786709c2497c5c97f.tar.bz2 ledger-632a37034a4d3a3cc2ad2bb786709c2497c5c97f.zip |
added flags to Makefile.am
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 872e5bad..bf6e6836 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,9 +1,11 @@ noinst_LIBRARIES = libledger.a +libledger_a_CXXFLAGS = -DDEBUG_LEVEL=4 -DDO_CLEANUP libledger_a_SOURCES = account.cc amount.cc autoxact.cc balance.cc binary.cc \ config.cc datetime.cc debug.cc format.cc ledger.cc option.cc \ parser.cc qif.cc quotes.cc textual.cc valexpr.cc value.cc walk.cc bin_PROGRAMS = ledger +ledger_CXXFLAGS = -DDEBUG_LEVEL=4 -DDO_CLEANUP ledger_SOURCES = main.cc ledger_LDADD = $(LIBOBJS) libledger.a |