summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-08-10 17:54:47 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-08-10 17:54:47 -0400
commit7a1d0d46146ecdb79a156ea1197bc3f1bd30cb95 (patch)
treefcca3d58b29c119ff42e70a08c35007b3e399d82 /Makefile
parent799e97e420133eb25a321f30a61f857831a93dac (diff)
downloadfork-ledger-7a1d0d46146ecdb79a156ea1197bc3f1bd30cb95.tar.gz
fork-ledger-7a1d0d46146ecdb79a156ea1197bc3f1bd30cb95.tar.bz2
fork-ledger-7a1d0d46146ecdb79a156ea1197bc3f1bd30cb95.zip
new debug code; automated transactions now use value expression predicates
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0ac560cd..0ae93fc2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,7 @@ CODE = account.cc \
balance.cc \
binary.cc \
datetime.cc \
+ debug.cc \
error.cc \
format.cc \
ledger.cc \
@@ -17,9 +18,9 @@ OBJS = $(patsubst %.cc,%.o,$(CODE))
CXX = g++
CFLAGS = -Wall -ansi -pedantic
-#DFLAGS = -O3 -fomit-frame-pointer
-DFLAGS = -g -DDEBUG=1
-#DFLAGS = -g -DDEBUG=1 -pg
+#DFLAGS = -O3 -fomit-frame-pointer -DRELEASE_LEVEL=0
+DFLAGS = -g -DRELEASE_LEVEL=4
+#DFLAGS = -g -DRELEASE_LEVEL=2 -pg
INCS = -I/sw/include \
-I/usr/include/gcc/darwin/3.3/c++ \