1
2common_defines = \
3	-DSHARE_DIR=\""$(pkgdatadir)"\" \
4	-DDATA_DIR=\""$(datadir)"\"
5
6
7bin_PROGRAMS = homebank
8
9
10HOMEBANK_CORE =
11
12
13USER_INTERFACE =
14
15
16homebank_SOURCES =  \
17	dsp-account.c \
18	dsp-account.h \
19	dsp-mainwindow.c \
20	dsp-mainwindow.h \
21	enums.h \
22	gtk-chart.c \
23	gtk-chart.h \
24	gtk-chart-colors.c \
25	gtk-chart-colors.h \
26	gtk-chart-progress.c \
27	gtk-chart-progress.h \
28	gtk-dateentry.c \
29	gtk-dateentry.h \
30	hb-account.c \
31	hb-account.h \
32	hb-archive.c \
33	hb-archive.h \
34	hb-assign.c \
35	hb-assign.h \
36	hb-category.c \
37	hb-category.h \
38	hb-currency.c \
39	hb-currency.h \
40	hb-encoding.c \
41	hb-encoding.h \
42	hb-export.c \
43	hb-export.h \
44	hb-filter.c \
45	hb-filter.h \
46	hb-hbfile.c \
47	hb-hbfile.h \
48	hb-import.c \
49	hb-import.h \
50	hb-import-ofx.c \
51	hb-import-qif.c \
52	hb-import-csv.c \
53	hb-misc.c \
54	hb-misc.h \
55	hb-payee.c \
56	hb-payee.h \
57	hb-group.c \
58	hb-group.h \
59	hb-preferences.c \
60	hb-preferences.h \
61	hb-report.c \
62	hb-report.h \
63	hb-tag.c \
64	hb-tag.h \
65	hb-split.c \
66	hb-split.h \
67	hb-transaction.c \
68	hb-transaction.h \
69	hb-xml.c \
70	hb-xml.h \
71	homebank.c \
72	homebank.h \
73	hub-account.c \
74	hub-account.h \
75	hub-scheduled.c \
76	hub-scheduled.h \
77	hub-spending.c \
78	hub-spending.h \
79	hub-transaction.c \
80	hub-transaction.h \
81	language.c \
82	language.h \
83	list-account.c \
84	list-account.h \
85	list-operation.c \
86	list-operation.h \
87	list-scheduled.c \
88	list-scheduled.h \
89	rep-balance.c \
90	rep-balance.h \
91	rep-budget.c \
92	rep-budget.h \
93	rep-stats.c \
94	rep-stats.h \
95	rep-time.c \
96	rep-time.h \
97	rep-vehicle.c \
98	rep-vehicle.h \
99	ui-account.c \
100	ui-account.h \
101	ui-archive.c \
102	ui-archive.h \
103	ui-assign.c \
104	ui-assign.h \
105	ui-assist-import.c \
106	ui-assist-import.h \
107	ui-assist-start.c \
108	ui-assist-start.h \
109	ui-budget.c \
110	ui-budget.h \
111	ui-budget-tabview.c \
112	ui-budget-tabview.h \
113	ui-category.c \
114	ui-category.h \
115	ui-currency.c \
116	ui-currency.h \
117	ui-dialogs.c \
118	ui-dialogs.h \
119	ui-filter.c \
120	ui-filter.h \
121	ui-hbfile.c \
122	ui-hbfile.h \
123	ui-group.c \
124	ui-group.h \
125	ui-payee.c \
126	ui-payee.h \
127	ui-pref.c \
128	ui-pref.h \
129	ui-split.c \
130	ui-split.h \
131	ui-tag.c \
132	ui-tag.h \
133	ui-transaction.c \
134	ui-transaction.h \
135	ui-txn-multi.c \
136	ui-txn-multi.h \
137	ui-widgets-data.c \
138	ui-widgets.c \
139	ui-widgets.h
140
141homebank_LDADD = $(DEPS_LIBS) \
142	$(LIBSOUP_LIBS)
143
144AM_CPPFLAGS = \
145	$(DEPS_CFLAGS) \
146	$(LIBSOUP_CFLAGS) \
147	$(common_defines)
148
149