* Makefile.am (libcamelincludedir): Define in terms of privincludedir. (camellibexecdir): Define in terms of privlibexecdir (libcamel_la_LDFLAGS): Remove -rpath. (automake will add that) * providers/imap/Makefile.am (libcamelimapincludedir): Define in terms of privincludedir. (INCLUDES): Remove -I$(includedir) * providers/local/Makefile.am: Likewise * providers/nntp/Makefile.am: Likewise * providers/pop3/Makefile.am: Likewise * providers/sendmail/Makefile.am: Likewise * providers/smtp/Makefile.am: Likewise svn path=/trunk/; revision=19775
30 lines
752 B
Makefile
30 lines
752 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libcamelsendmailincludedir = $(privincludedir)/camel
|
|
|
|
camel_provider_LTLIBRARIES = libcamelsendmail.la
|
|
camel_provider_DATA = libcamelsendmail.urls
|
|
|
|
INCLUDES = \
|
|
-I.. \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../../.. \
|
|
-I$(top_srcdir)/intl \
|
|
-I$(top_srcdir)/camel \
|
|
$(CAMEL_CFLAGS) \
|
|
$(GNOME_INCLUDEDIR) \
|
|
$(GTK_INCLUDEDIR) \
|
|
-DG_LOG_DOMAIN=\"camel-sendmail-provider\" \
|
|
-DG_DISABLE_DEPRECATED
|
|
|
|
libcamelsendmail_la_SOURCES = \
|
|
camel-sendmail-provider.c \
|
|
camel-sendmail-transport.c
|
|
|
|
libcamelsendmailinclude_HEADERS = \
|
|
camel-sendmail-transport.h
|
|
|
|
libcamelsendmail_la_LDFLAGS = -avoid-version -module
|
|
|
|
EXTRA_DIST = libcamelsendmail.urls
|