diff options
author | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
commit | 528c1e5ff51e213936e800fc5a9a25da99c0bdf2 (patch) | |
tree | 77f8aa456b09367ba81f04d4562fc935f898a951 /plugins/spell/Makefile.am | |
download | pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.bz2 pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.xz |
initial
Diffstat (limited to 'plugins/spell/Makefile.am')
-rwxr-xr-x | plugins/spell/Makefile.am | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/plugins/spell/Makefile.am b/plugins/spell/Makefile.am new file mode 100755 index 00000000..9d332f95 --- /dev/null +++ b/plugins/spell/Makefile.am @@ -0,0 +1,63 @@ +# Spell checker plugin +plugindir = $(GEDIT_PLUGINS_LIBS_DIR) + +INCLUDES = \ + -I$(top_srcdir) \ + $(GEDIT_CFLAGS) \ + $(ENCHANT_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED_CFLAGS) + +BUILT_SOURCES = \ + gedit-spell-marshal.c \ + gedit-spell-marshal.h + +plugin_LTLIBRARIES = libspell.la + +libspell_la_SOURCES = \ + gedit-spell-plugin.c \ + gedit-spell-plugin.h \ + gedit-spell-checker.c \ + gedit-spell-checker.h \ + gedit-spell-checker-dialog.c \ + gedit-spell-checker-dialog.h \ + gedit-spell-checker-language.c \ + gedit-spell-checker-language.h \ + gedit-spell-language-dialog.c \ + gedit-spell-language-dialog.h \ + gedit-automatic-spell-checker.c \ + gedit-automatic-spell-checker.h \ + gedit-spell-utils.c \ + gedit-spell-utils.h \ + $(BUILT_SOURCES) + +libspell_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS) +libspell_la_LIBADD = $(GEDIT_LIBS) $(ENCHANT_LIBS) + +uidir = $(GEDIT_PLUGINS_DATA_DIR)/spell +ui_DATA = spell-checker.ui languages-dialog.ui + +gedit-spell-marshal.h: gedit-spell-marshal.list $(GLIB_GENMARSHAL) + $(AM_V_GEN) $(GLIB_GENMARSHAL) $< --header --prefix=gedit_marshal > $@ + +gedit-spell-marshal.c: gedit-spell-marshal.list $(GLIB_GENMARSHAL) + $(AM_V_GEN) echo "#include \"gedit-spell-marshal.h\"" > $@ && \ + $(GLIB_GENMARSHAL) $< --body --prefix=gedit_marshal >> $@ + +plugin_in_files = spell.gedit-plugin.desktop.in + +%.gedit-plugin: %.gedit-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache + +plugin_DATA = $(plugin_in_files:.gedit-plugin.desktop.in=.gedit-plugin) + +EXTRA_DIST = \ + $(ui_DATA) \ + $(plugin_in_files) \ + gedit-spell-marshal.list + +CLEANFILES = $(BUILT_SOURCES) $(plugin_DATA) + +dist-hook: + cd $(distdir); rm -f $(BUILT_SOURCES) + +-include $(top_srcdir)/git.mk |