diff options
author | monsta <[email protected]> | 2015-12-03 10:33:57 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-12-03 10:33:57 +0300 |
commit | 38427b5d6dab1e9a96f9abd4cbd4a223f07a3b6e (patch) | |
tree | 2a7d8622e24f75d5e43e5fe0c3b8753cd6a44bce /plugins/spell/Makefile.am | |
parent | 3d2d7963abc558a09939aa4b0e4bdcedfb80b10e (diff) | |
parent | efc6229fce6eecf0c35e620bb5adf4b912202c56 (diff) | |
download | pluma-38427b5d6dab1e9a96f9abd4cbd4a223f07a3b6e.tar.bz2 pluma-38427b5d6dab1e9a96f9abd4cbd4a223f07a3b6e.tar.xz |
Merge pull request #146 from sleeveroller/issue90
Add a new Configure dialog for the Spell Check plugin.
Diffstat (limited to 'plugins/spell/Makefile.am')
-rwxr-xr-x | plugins/spell/Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/plugins/spell/Makefile.am b/plugins/spell/Makefile.am index 7c08bf99..001b25ae 100755 --- a/plugins/spell/Makefile.am +++ b/plugins/spell/Makefile.am @@ -35,7 +35,7 @@ libspell_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS) libspell_la_LIBADD = $(PLUMA_LIBS) $(ENCHANT_LIBS) uidir = $(PLUMA_PLUGINS_DATA_DIR)/spell -ui_DATA = spell-checker.ui languages-dialog.ui +ui_DATA = spell-checker.ui languages-dialog.ui pluma-spell-setup-dialog.ui pluma-spell-marshal.h: pluma-spell-marshal.list $(GLIB_GENMARSHAL) $(AM_V_GEN) $(GLIB_GENMARSHAL) $< --header --prefix=pluma_marshal > $@ @@ -50,12 +50,19 @@ plugin_in_files = spell.pluma-plugin.desktop.in plugin_DATA = $(plugin_in_files:.pluma-plugin.desktop.in=.pluma-plugin) +@INTLTOOL_XML_NOMERGE_RULE@ +spell_gschema_in = org.mate.pluma.plugins.spell.gschema.xml.in +gsettings_SCHEMAS = $(spell_gschema_in:.xml.in=.xml) +@GSETTINGS_RULES@ + + EXTRA_DIST = \ $(ui_DATA) \ $(plugin_in_files) \ - pluma-spell-marshal.list + pluma-spell-marshal.list \ + $(spell_gschema_in) -CLEANFILES = $(BUILT_SOURCES) $(plugin_DATA) +CLEANFILES = $(BUILT_SOURCES) $(plugin_DATA) $(gsettings_SCHEMAS) dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |