diff options
author | John Wiegley <johnw@newartisans.com> | 2003-10-04 07:48:21 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2003-10-04 07:48:21 +0000 |
commit | 2c109226140a99a07af079c70e54fb396bb3484e (patch) | |
tree | 9d8b23ebd636bb3e8e350fa9509bd931cb60eb94 /Makefile | |
parent | cb9de0d695c89e03a926451f7ccf2f634e7be436 (diff) | |
download | fork-ledger-2c109226140a99a07af079c70e54fb396bb3484e.tar.gz fork-ledger-2c109226140a99a07af079c70e54fb396bb3484e.tar.bz2 fork-ledger-2c109226140a99a07af079c70e54fb396bb3484e.zip |
Moved definition of virtual accounts into the ledger data file
itself. They are now called "automated transactions". Some
rearchitecting.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +define GNUCASH +true +endef + CODE = amount.cc \ ledger.cc \ parse.cc \ @@ -8,9 +12,9 @@ CODE = amount.cc \ OBJS = $(patsubst %.cc,%.o,$(CODE)) -CFLAGS = -Wall -ansi -pedantic # -DDEBUG=1 -DFLAGS = -O3 -fomit-frame-pointer -mcpu=pentium -#DFLAGS = -g +CFLAGS = -Wall -ansi -pedantic +#DFLAGS = -O3 -fomit-frame-pointer -mcpu=pentium +DFLAGS = -g -DDEBUG=1 INCS = LIBS = -lgmpxx -lgmp -lpcre |