summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2003-10-04 01:54:30 +0000
committerJohn Wiegley <johnw@newartisans.com>2003-10-04 01:54:30 +0000
commit3ef7bfdb32d770812e9805474ea9956568385efe (patch)
tree9bd7673055d3a5ff03caf0d4f9ba63a8c2a45cc7 /Makefile
parent3cfae2794784c1629dd98c0b600b2731e27a3f57 (diff)
downloadfork-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--Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index a64800ef..ac592732 100644
--- a/Makefile
+++ b/Makefile
@@ -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