diff options
author | John Wiegley <johnw@newartisans.com> | 2003-10-04 01:54:30 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2003-10-04 01:54:30 +0000 |
commit | 3ef7bfdb32d770812e9805474ea9956568385efe (patch) | |
tree | 9bd7673055d3a5ff03caf0d4f9ba63a8c2a45cc7 /Makefile | |
parent | 3cfae2794784c1629dd98c0b600b2731e27a3f57 (diff) | |
download | fork-ledger-3ef7bfdb32d770812e9805474ea9956568385efe.tar.gz fork-ledger-3ef7bfdb32d770812e9805474ea9956568385efe.tar.bz2 fork-ledger-3ef7bfdb32d770812e9805474ea9956568385efe.zip |
Added support for virtual accounts.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -1,9 +1,6 @@ define GNUCASH true endef -define HUQUQ -true -endef CODE = amount.cc \ ledger.cc \ @@ -15,15 +12,11 @@ CODE = amount.cc \ OBJS = $(patsubst %.cc,%.o,$(CODE)) -CFLAGS = -Wall -ansi -pedantic -DFLAGS = -g -O2 # -O3 -fomit-frame-pointer -mcpu=pentium +CFLAGS = -Wall -ansi -pedantic -DDEBUG=1 +DFLAGS = -g # -O2 # -O3 -fomit-frame-pointer -mcpu=pentium INCS = LIBS = -lgmpxx -lgmp -lpcre -ifdef HUQUQ -CFLAGS := $(CFLAGS) -DHUQUQULLAH=1 -endif - ifdef GNUCASH CODE := $(CODE) gnucash.cc CFLAGS := $(CFLAGS) -DREAD_GNUCASH=1 |