aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-04-03 17:10:12 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-04-03 17:10:12 +0800
commit8de35f87c2ba48047d8677f4035c9415a500f6d8 (patch)
treeea4132f6c3991c23cd1f48536d93ea99acb29891 /plugins
parent161a51e4dfb33d6cb2b445d14930a059a8568590 (diff)
downloadgsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.tar
gsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.tar.gz
gsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.tar.bz2
gsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.tar.lz
gsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.tar.xz
gsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.tar.zst
gsoc2013-evolution-8de35f87c2ba48047d8677f4035c9415a500f6d8.zip
Committing the right Makefile.am
svn path=/trunk/; revision=33365
Diffstat (limited to 'plugins')
-rw-r--r--plugins/bogo-junk-plugin/ChangeLog4
-rw-r--r--plugins/bogo-junk-plugin/Makefile.am39
2 files changed, 41 insertions, 2 deletions
diff --git a/plugins/bogo-junk-plugin/ChangeLog b/plugins/bogo-junk-plugin/ChangeLog
index 16f0edce05..e8c73a1e7e 100644
--- a/plugins/bogo-junk-plugin/ChangeLog
+++ b/plugins/bogo-junk-plugin/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-03 Srinivasa Ragavan <sragavan@novell.com>
+
+ * Makefile.am: Committing the right Makefile.am
+
2007-04-03 Srinivasa Ragavan <sragavan@novell.com>
** Added bogofilter part of Evolution source.
diff --git a/plugins/bogo-junk-plugin/Makefile.am b/plugins/bogo-junk-plugin/Makefile.am
index 8364a3a463..7c2545475f 100644
--- a/plugins/bogo-junk-plugin/Makefile.am
+++ b/plugins/bogo-junk-plugin/Makefile.am
@@ -1,2 +1,37 @@
-SUBDIRS = $(plugins_enabled)
-DIST_SUBDIRS = $(all_plugins_base) $(all_plugins_standard) $(all_plugins_experimental) profiler
+INCLUDES = \
+ -I$(top_srcdir) \
+ $(EVOLUTION_MAIL_CFLAGS)
+
+@EVO_PLUGIN_RULE@
+
+plugin_DATA = org-gnome-bogo-junk-plugin.eplug
+plugin_LTLIBRARIES = liborg-gnome-bogo-junk-plugin.la
+
+liborg_gnome_bogo_junk_plugin_la_SOURCES = bf-junk-filter.c
+liborg_gnome_bogo_junk_plugin_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED)
+
+schemadir = $(GCONF_SCHEMA_FILE_DIR)
+schema_in_files = bogo-junk-plugin.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
+
+
+BUILT_SOURCES = $(plugin_DATA) $(error_DATA)
+
+CLEANFILES = $(BUILT_SOURCES)
+
+EXTRA_DIST = \
+ org-gnome-bogo-junk-plugin.eplug.in
+
+