Statistics
| Revision:

root / src / Makefile.am @ 501

History | View | Annotate | Download (3.7 kB)

1
SUBDIRS = icons
2
3
bin_PROGRAMS = sylpheed
4
5
sylpheed_SOURCES = \
6
	defs.h \
7
	version.h \
8
	main.c main.h \
9
	mainwindow.c mainwindow.h \
10
	folderview.c folderview.h \
11
	summaryview.c summaryview.h \
12
	messageview.c messageview.h \
13
	headerview.c headerview.h \
14
	textview.c textview.h \
15
	imageview.c imageview.h \
16
	mimeview.c mimeview.h \
17
	summary_search.c summary_search.h \
18
	message_search.c message_search.h \
19
	colorlabel.c colorlabel.h \
20
	folder.c folder.h \
21
	procmsg.c procmsg.h \
22
	procheader.c procheader.h \
23
	filter.c filter.h \
24
	action.c action.h \
25
	compose.c compose.h \
26
	gtkshruler.c gtkshruler.h \
27
	menu.c menu.h \
28
	stock_pixmap.c stock_pixmap.h \
29
	prefs.c prefs.h \
30
	prefs_common.c prefs_common.h \
31
	prefs_filter.c prefs_filter.h \
32
	prefs_filter_edit.c prefs_filter_edit.h \
33
	prefs_account.c prefs_account.h \
34
	prefs_folder_item.c prefs_folder_item.h \
35
	prefs_display_header.c prefs_display_header.h \
36
	prefs_customheader.c prefs_customheader.h \
37
	prefs_summary_column.c prefs_summary_column.h \
38
	prefs_template.c prefs_template.h \
39
	prefs_actions.c prefs_actions.h \
40
	account.c account.h \
41
	displayheader.c displayheader.h \
42
	customheader.c customheader.h \
43
	template.c template.h \
44
	addressbook.c addressbook.h \
45
	addr_compl.c addr_compl.h \
46
	addressitem.h \
47
	addritem.c addritem.h \
48
	addrcache.c addrcache.h \
49
	addrbook.c addrbook.h \
50
	addrindex.c addrindex.h \
51
	mgutils.c mgutils.h \
52
	vcard.c vcard.h \
53
	ldif.c ldif.h \
54
	importldif.c importldif.h \
55
	jpilot.c jpilot.h \
56
	syldap.c syldap.h \
57
	editbook.c editbook.h \
58
	editgroup.c editgroup.h \
59
	editaddress.c editaddress.h \
60
	editvcard.c editvcard.h \
61
	editjpilot.c editjpilot.h \
62
	editldap.c editldap.h \
63
	editldap_basedn.c editldap_basedn.h \
64
	addressadd.c addressadd.h \
65
	filesel.c filesel.h \
66
	foldersel.c foldersel.h \
67
	statusbar.c statusbar.h \
68
	logwindow.c logwindow.h \
69
	sourcewindow.c sourcewindow.h \
70
	manage_window.c manage_window.h \
71
	undo.c undo.h \
72
	alertpanel.c alertpanel.h \
73
	inputdialog.c inputdialog.h \
74
	progressdialog.c progressdialog.h \
75
	grouplistdialog.c grouplistdialog.h \
76
	about.c about.h \
77
	setup.c setup.h \
78
	utils.c utils.h \
79
	gtkutils.c gtkutils.h \
80
	codeconv.c codeconv.h \
81
	unmime.c unmime.h \
82
	base64.c base64.h \
83
	quoted-printable.c quoted-printable.h \
84
	uuencode.c uuencode.h \
85
	md5.c md5.h \
86
	socket.c socket.h \
87
	ssl.c ssl.h \
88
	session.c session.h \
89
	smtp.c smtp.h \
90
	pop.c pop.h \
91
	mh.c mh.h \
92
	mbox.c mbox.h \
93
	send_message.c send_message.h \
94
	recv.c recv.h \
95
	inc.c inc.h \
96
	import.c import.h \
97
	export.c export.h \
98
	nntp.c nntp.h \
99
	news.c news.h \
100
	imap.c imap.h \
101
	xml.c xml.h \
102
	html.c html.h \
103
	procmime.c procmime.h \
104
	rfc2015.c rfc2015.h \
105
	passphrase.c passphrase.h \
106
	select-keys.c select-keys.h \
107
	sigstatus.c sigstatus.h \
108
	simple-gettext.c \
109
	manual.c manual.h \
110
	stringtable.c stringtable.h \
111
	eggtrayicon.c eggtrayicon.h \
112
	quote_fmt_lex.l quote_fmt_lex.h \
113
	quote_fmt_parse.y quote_fmt.h \
114
	sylpheed-marshal.c sylpheed-marshal.h
115
116
BUILT_SOURCES = \
117
	quote_fmt_lex.c \
118
	quote_fmt_parse.c \
119
	quote_fmt_parse.h \
120
	sylpheed-marshal.c \
121
	sylpheed-marshal.h
122
123
EXTRA_DIST = \
124
	quote_fmt_parse.h \
125
	sylpheed-marshal.list \
126
	version.h.in
127
128
INCLUDES = \
129
	-DG_LOG_DOMAIN=\"Sylpheed\" \
130
	$(GTK_CFLAGS) \
131
	$(GDK_PIXBUF_CFLAGS) \
132
	$(GPGME_CFLAGS) \
133
	-I$(includedir)
134
135
sylpheed_LDADD = \
136
	$(INTLLIBS) \
137
	$(GTK_LIBS) \
138
	$(GPGME_LIBS) \
139
	$(LDAP_LIBS) \
140
	$(LIBICONV)
141
142
AM_CPPFLAGS = \
143
	-DLOCALEDIR=\""$(localedir)"\" \
144
	-DMANUALDIR=\""$(manualdir)"\" \
145
	-DFAQDIR=\""$(faqdir)"\" \
146
	-DTARGET_ALIAS=\""$(target_triplet)"\" \
147
	-DSYSCONFDIR=\""$(sysconfdir)"\"
148
149
AM_YFLAGS = -d
150
151
sylpheed-marshal.h: sylpheed-marshal.list
152
	$(GLIB_GENMARSHAL) $< --header --prefix=sylpheed_marshal > $@
153
154
sylpheed-marshal.c: sylpheed-marshal.list
155
	$(GLIB_GENMARSHAL) $< --body --prefix=sylpheed_marshal > $@