claws-mail/src/Makefile.am

148 lines
3.5 KiB
Makefile
Raw Normal View History

2001-04-19 14:21:46 +02:00
bin_PROGRAMS = sylpheed
sylpheed_SOURCES = \
intl.h \
defs.h \
main.c main.h \
mainwindow.c mainwindow.h \
folderview.c folderview.h \
summaryview.c summaryview.h \
messageview.c messageview.h \
headerview.c headerview.h \
textview.c textview.h \
imageview.c imageview.h \
mimeview.c mimeview.h \
summary_search.c summary_search.h \
folder.c folder.h \
procmsg.c procmsg.h \
procheader.c procheader.h \
filter.c filter.h \
compose.c compose.h \
gtkshruler.c gtkshruler.h \
gtksctree.c gtksctree.h \
menu.c menu.h \
prefs.c prefs.h \
prefs_common.c prefs_common.h \
prefs_filter.c prefs_filter.h \
prefs_account.c prefs_account.h \
2001-05-06 22:06:56 +02:00
prefs_display_header.c prefs_display_header.h \
2001-04-19 14:21:46 +02:00
account.c account.h \
2001-05-06 22:06:56 +02:00
displayheader.c displayheader.h \
2001-04-19 14:21:46 +02:00
addressbook.c addressbook.h \
filesel.c filesel.h \
foldersel.c foldersel.h \
statusbar.c statusbar.h \
headerwindow.c headerwindow.h \
logwindow.c logwindow.h \
sourcewindow.c sourcewindow.h \
manage_window.c manage_window.h \
alertpanel.c alertpanel.h \
inputdialog.c inputdialog.h \
progressdialog.c progressdialog.h \
about.c about.h \
setup.c setup.h \
utils.c utils.h \
gtkutils.c gtkutils.h \
codeconv.c codeconv.h \
unmime.c unmime.h \
base64.c base64.h \
uuencode.c uuencode.h \
2001-05-02 20:51:12 +02:00
md5.c md5.h \
2001-04-19 14:21:46 +02:00
rfc822.c rfc822.h \
socket.c socket.h \
automaton.c automaton.h \
session.c session.h \
smtp.c smtp.h \
esmtp.c esmtp.h \
pop.c pop.h \
mh.c mh.h \
mbox.c mbox.h \
send.c send.h \
recv.c recv.h \
inc.c inc.h \
import.c import.h \
2001-04-27 22:27:24 +02:00
export.c export.h \
2001-04-19 14:21:46 +02:00
nntp.c nntp.h \
news.c news.h \
imap.c imap.h \
xml.c xml.h \
html.c html.h \
procmime.c procmime.h \
rfc2015.c rfc2015.h \
passphrase.c passphrase.h \
select-keys.c select-keys.h \
2001-04-27 22:27:24 +02:00
sigstatus.c sigstatus.h \
simple-gettext.c \
2001-04-19 14:21:46 +02:00
manual.c manual.h \
2001-04-21 01:24:31 +02:00
addr_compl.c addr_compl.h \
2001-04-24 00:42:28 +02:00
gtkstext.c gtkstext.h \
2001-04-24 17:44:45 +02:00
grouplist_dialog.c grouplist_dialog.h \
customheader.c customheader.h \
prefs_headers.c prefs_headers.h \
2001-05-06 06:27:28 +02:00
scoring.c scoring.h \
prefs_folder_item.c prefs_folder_item.h \
matcher.c matcher.h
2001-04-19 14:21:46 +02:00
EXTRA_DIST = \
pixmaps/clip.xpm \
pixmaps/deleted.xpm \
pixmaps/dir-close.xpm \
pixmaps/dir-open.xpm \
pixmaps/folder.xpm \
pixmaps/forwarded.xpm \
pixmaps/group.xpm \
pixmaps/inbox.xpm \
pixmaps/mark.xpm \
pixmaps/new.xpm \
pixmaps/outbox.xpm \
pixmaps/regular.xpm \
pixmaps/replied.xpm \
pixmaps/trash.xpm \
pixmaps/unread.xpm \
pixmaps/linewrap.xpm \
2001-05-02 20:51:12 +02:00
pixmaps/continue.xpm \
pixmaps/complete.xpm \
pixmaps/error.xpm \
2001-04-19 14:21:46 +02:00
pixmaps/stock_mail.xpm \
pixmaps/stock_mail_attach.xpm \
pixmaps/stock_mail_receive.xpm \
pixmaps/stock_mail_receive_all.xpm \
pixmaps/stock_mail_send.xpm \
pixmaps/stock_mail_compose.xpm \
pixmaps/stock_mail_reply.xpm \
pixmaps/stock_mail_reply_to_all.xpm \
pixmaps/stock_mail_forward.xpm \
pixmaps/stock_preferences.xpm \
pixmaps/stock_properties.xpm \
pixmaps/stock_search.xpm \
pixmaps/stock_close.xpm \
pixmaps/stock_exec.xpm \
pixmaps/stock_trash.xpm \
pixmaps/stock_up_arrow.xpm \
pixmaps/stock_down_arrow.xpm \
pixmaps/stock_paste.xpm \
pixmaps/tb_address_book.xpm \
pixmaps/sylpheed-logo.xpm
INCLUDES = \
-DG_LOG_DOMAIN=\"Sylpheed\" \
-I$(top_srcdir)/libkcc \
-I$(top_srcdir)/intl \
$(GTK_CFLAGS) \
$(GDK_IMLIB_CFLAGS) \
$(GDK_PIXBUF_CFLAGS) \
-I$(includedir)
sylpheed_LDADD = \
$(top_builddir)/libkcc/libkcc.a \
$(INTLLIBS) \
$(GTK_LIBS) \
$(GDK_IMLIB_LIBS) \
$(GDK_PIXBUF_LIBS) \
$(GPGME_LIBS)
CPPFLAGS = \
-DLOCALEDIR=\""$(localedir)"\" \
-DMANUALDIR=\""$(manualdir)"\" \
-DHOST_ALIAS=\""$(host_alias)"\"