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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
SUBDIRS = imap
noinst_LIBRARIES = libbalsa.a
if BUILD_WITH_GPGME
libbalsa_gpgme_extra = \
gmime-gpgme-context.h \
gmime-gpgme-context.c \
gmime-part-rfc2440.h \
gmime-part-rfc2440.c \
gmime-gpgme-signature.h \
gmime-gpgme-signature.c
libbalsa_gpgme_extra_dist =
else
libbalsa_gpgme_extra =
libbalsa_gpgme_extra_dist = \
gmime-gpgme-context.h \
gmime-gpgme-context.c \
gmime-part-rfc2440.h \
gmime-part-rfc2440.c \
gmime-gpgme-signature.h \
gmime-gpgme-signature.c
endif
if BUILD_WITH_SMIME
libbalsa_smime_extra = \
gmime-application-pkcs7.h \
gmime-application-pkcs7.c
libbalsa_smime_extra_dist =
else
libbalsa_smime_extra =
libbalsa_smime_extra_dist = \
gmime-application-pkcs7.h \
gmime-application-pkcs7.c
endif
libbalsa_a_SOURCES = \
abook-completion.c \
abook-completion.h \
address-book-extern.c \
address-book-extern.h \
address-book-gpe.c \
address-book-gpe.h \
address-book-ldap.c \
address-book-ldap.h \
address-book-ldif.c \
address-book-ldif.h \
address-book-text.c \
address-book-text.h \
address-book-vcard.c \
address-book-vcard.h \
address-book.c \
address-book.h \
address-entry.c \
address-entry.h \
address.c \
address.h \
body.c \
body.h \
files.c \
files.h \
filter-error.c \
filter-file.c \
filter-file.h \
filter-funcs.c \
filter-funcs.h \
filter-private.h \
filter.c \
filter.h \
folder-scanners.c \
folder-scanners.h \
html.c \
html.h \
i18n.h \
identity.c \
identity.h \
imap-server.c \
imap-server.h \
information.c \
information.h \
libbalsa-conf.c \
libbalsa-conf.h \
libbalsa-marshal.c \
libbalsa-marshal.h \
libbalsa.c \
libbalsa.h \
libbalsa_private.h \
mailbackend.h \
mailbox-filter.c \
mailbox-filter.h \
mailbox.c \
mailbox.h \
mailbox_imap.c \
mailbox_imap.h \
mailbox_local.c \
mailbox_local.h \
mailbox_maildir.c \
mailbox_maildir.h \
mailbox_mbox.c \
mailbox_mbox.h \
mailbox_mh.c \
mailbox_mh.h \
mailbox_pop3.c \
mailbox_pop3.h \
mailbox_remote.c \
mailbox_remote.h \
message.c \
message.h \
mime.c \
mime.h \
mime-stream-shared.c \
mime-stream-shared.h \
misc.c \
misc.h \
rfc3156.c \
rfc3156.h \
send.c \
send.h \
server.c \
server.h \
smtp-server.c \
smtp-server.h \
source-viewer.c \
url.c \
url.h \
${libbalsa_gpgme_extra} \
${libbalsa_smime_extra}
EXTRA_DIST = \
libbalsa-marshal.list \
padlock-keyhole.xpm \
${libbalsa_gpgme_extra_dist} \
${libbalsa_smime_extra_dist}
INCLUDES= -I${top_builddir} -I${top_srcdir} -I${top_srcdir}/libbalsa \
-I${top_srcdir}/libbalsa/imap \
$(BALSA_CFLAGS)
DEFS = \
-DG_DISABLE_DEPRECATED \
-DGDK_DISABLE_DEPRECATED \
-DGDK_PIXBUF_DISABLE_DEPRECATED \
-DGMIME_DISABLE_DEPRECATED \
-DGNOME_DISABLE_DEPRECATED \
-DGNOME_DISABLE_DEPRECATED_SOURCE \
-DGNOME_VFS_DISABLE_DEPRECATED \
-DGTK_DISABLE_DEPRECATED \
-DPANGO_DISABLE_DEPRECATED
#Signal marshallers
marshal_prefix = libbalsa
libbalsa-marshal.h: libbalsa-marshal.list
( @GLIB_GENMARSHAL@ --prefix=$(marshal_prefix) $(srcdir)/libbalsa-marshal.list --header > libbalsa-marshal.tmp \
&& mv libbalsa-marshal.tmp libbalsa-marshal.h ) \
|| ( rm -f libbalsa-marshal.tmp && exit 1 )
libbalsa-marshal.c: libbalsa-marshal.h
( echo "#include \"libbalsa-marshal.h\"" > libbalsa-marshal.tmp \
&& @GLIB_GENMARSHAL@ --prefix=$(marshal_prefix) $(srcdir)/libbalsa-marshal.list --body >> libbalsa-marshal.tmp \
&& mv libbalsa-marshal.tmp libbalsa-marshal.c ) \
|| ( rm -f libbalsa-marshal.tmp && exit 1 )
$(libbalsa_a_OBJECTS): libbalsa-marshal.h
|