indentation-c-style: Update preferences UI file to gtk+-3
[anjuta.git] / plugins / language-manager / Makefile.am
blob8256dfcd1ee3e408d7bcab5ad42717e196425682
1 # Plugin Icon file
2 language_manager_pixmapsdir = $(anjuta_image_dir)
3 language_manager_pixmaps_DATA = \
4         anjuta-language-manager-plugin.svg \
5         anjuta-language-manager-plugin-48.png
7 language_manager_xmldir = $(anjuta_data_dir)
8 language_manager_xml_DATA = languages.xml
10 # Plugin description file
11 plugin_in_files = language-manager.plugin.in
12 %.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
14 language_manager_plugindir = $(anjuta_plugin_dir)
15 language_manager_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
17 # NOTE :
18 # The naming convention is very intentional
19 # We are forced to use the prefix 'lib' by automake and libtool
20 #    There is probably a way to avoid it but it is not worth to effort
21 #    to find out.
22 # The 'anjuta_' prfix is a safety measure to avoid conflicts where the
23 #    plugin 'libpython.so' needs to link with the real 'libpython.so'
25 # Include paths
26 AM_CPPFLAGS = \
27         $(XML_CFLAGS) \
28         $(LIBANJUTA_CFLAGS)
30 # Where to install the plugin
31 plugindir = $(anjuta_plugin_dir)
33 # The plugin
34 plugin_LTLIBRARIES = liblanguage-manager.la
36 # Plugin sources
37 liblanguage_manager_la_SOURCES = plugin.c plugin.h
39 # Plugin dependencies
40 liblanguage_manager_la_LIBADD = \
41         $(LIBANJUTA_LIBS) \
42         $(XML_LIBS) 
44 liblanguage_manager_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
46 EXTRA_DIST = \
47         $(plugin_in_files) \
48         $(language_manager_plugin_DATA) \
49         $(langauge_manager_xml_DATA) \
50         $(language_manager_pixmaps_DATA) \
51         languages.xml
54 -include $(top_srcdir)/git.mk