summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0679f6dafd764ce40ba297b76f537cd14469abbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
define GNUCASH
true
endef

CODE =  amount.cc ledger.cc parse.cc reports.cc

OBJS = $(patsubst %.cc,%.o,$(CODE))

CFLAGS = -Wall -ansi -pedantic
#DFLAGS = -O3 -fomit-frame-pointer -mcpu=pentium
DFLAGS = -g -DDEBUG=1
INCS   =
LIBS   = -lgmpxx -lgmp -lpcre

ifdef GNUCASH
CODE   := $(CODE) gnucash.cc
CFLAGS := $(CFLAGS) -DREAD_GNUCASH=1
INCS   := $(INCS) -I/usr/include/xmltok
LIBS   := $(LIBS) -lxmlparse
endif

all: make.deps ledger ledger.info

ledger: $(OBJS)
	g++ $(CFLAGS) $(INCS) $(DFLAGS) -o $@ $(OBJS) $(LIBS)

ledger.info: ledger.texi
	makeinfo $<

%.o: %.cc
	g++ $(CFLAGS) $(INCS) $(DFLAGS) -c -o $@ $<

clean:
	rm -f ledger ledger.info *.o *~ .\#*

rebuild: clean deps all

deps: make.deps

make.deps: Makefile
	cc -M $(INCS) $(CODE) > $@

include make.deps