summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ff0b9856..fb139113 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ define GNUCASH
true
endef
-CODE = amount.cc ledger.cc parse.cc balance.cc main.cc
+CODE = amount.cc ledger.cc parse.cc balance.cc register.cc main.cc
ifdef GNUCASH
CODE := $(CODE) gnucash.cc
endif
@@ -10,7 +10,8 @@ endif
OBJS = $(patsubst %.cc,%.o,$(CODE))
CFLAGS = -Wall -ansi -pedantic -DHUQUQULLAH=1
-DFLAGS = -g
+#DFLAGS = -O3 -fomit-frame-pointer
+DFLAGS = -g # -pg
INCS = -I/usr/include/xmltok
LIBS = -lgmpxx -lgmp -lpcre
ifdef GNUCASH