2007-05-12 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #337616 * Makefile.am: Add --disable-scrollkeeper to DISTCHECK_CONFIGURE_FLAGS. * addressbook/Makefile.am: * calendar/gui/Makefile.am: * mail/Makefile.am: * plugins/bogo-junk-plugins/Makefile.am: * plugins/default-mailer/Makefile.am: * shell/Makefile.am: Add $(schema_DATA) to DISTCLEANFILES. * plugins/bogo-junk-plugins/org-gnome-bogo-junk-plugin.eplug.in: Rename as org-gnome-bogo-junk-plugin.eplug.xml. * plugins/caldav/Makefile.am: * plugins/import-ics-attachments/Makefile.am: * plugins/publish-calendar/Makefile.am: Add "eplug" file to CLEANFILES. * plugins/mail-remote/Makefile.am: Add "eplug.xml" file to EXTRA_DIST. * po/POTFILES.in: Don't translate files we no longer ship. svn path=/trunk/; revision=33521
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(EVOLUTION_MAIL_CFLAGS)
|
|
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
error_DATA = org-gnome-default-mailer.error
|
|
errordir = $(privdatadir)/errors
|
|
|
|
plugin_DATA = org-gnome-default-mailer.eplug
|
|
plugin_LTLIBRARIES = liborg-gnome-default-mailer.la
|
|
|
|
liborg_gnome_default_mailer_la_SOURCES = default-mailer.c
|
|
liborg_gnome_default_mailer_la_LDFLAGS = -module -avoid-version
|
|
|
|
schemadir = $(GCONF_SCHEMA_FILE_DIR)
|
|
schema_in_files = apps-evolution-mail-prompts-checkdefault.schemas.in.in
|
|
schema_DATA = $(schema_in_files:.schemas.in.in=-$(BASE_VERSION).schemas)
|
|
|
|
%-$(BASE_VERSION).schemas.in: %.schemas.in.in
|
|
cp $< $@
|
|
|
|
@INTLTOOL_SCHEMAS_RULE@
|
|
|
|
install-data-local:
|
|
if test -z "$(DESTDIR)" ; then \
|
|
for p in $(schema_DATA) ; do \
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p; \
|
|
done \
|
|
fi
|
|
|
|
EXTRA_DIST = \
|
|
org-gnome-default-mailer.eplug.xml \
|
|
org-gnome-default-mailer.error.xml \
|
|
$(schema_in_files)
|
|
|
|
BUILT_SOURCES = org-gnome-default-mailer.eplug \
|
|
org-gnome-default-mailer.error
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
DISTCLEANFILES = $(schema_DATA)
|