Updated Makefile.am files after make -f git.mk
[anjuta.git] / plugins / jhbuild / Makefile.am
blobbf56211c49d89df4ee2f3389c7e16a6604aa4d9d
1 # Plugin Icon file
2 jhbuild_pixmapsdir = $(anjuta_image_dir)
3 dist_jhbuild_pixmaps_DATA = \
4         anjuta-jhbuild-plugin-48.png
6 # Plugin description file
7 plugin_in_files = anjuta-jhbuild.plugin.in
8 %.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
10 jhbuild_plugindir = $(anjuta_plugin_dir)
11 dist_jhbuild_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
13 # NOTE :
14 # The naming convention is very intentional
15 # We are forced to use the prefix 'lib' by automake and libtool
16 #    There is probably a way to avoid it but it is not worth to effort
17 #    to find out.
18 # The 'anjuta_' prfix is a safety measure to avoid conflicts where the
19 #    plugin 'libpython.so' needs to link with the real 'libpython.so'
21 # Include paths
22 AM_CPPFLAGS = \
23         $(WARN_CFLAGS) \
24         $(DEPRECATED_FLAGS) \
25         $(LIBANJUTA_CFLAGS) \
26         $(EXTRA_CFLAGS) \
27         -DG_LOG_DOMAIN=\"jhbuild\"
29 # Where to install the plugin
30 plugindir = $(anjuta_plugin_dir)
32 # The plugin
33 plugin_LTLIBRARIES = libanjuta-jhbuild.la
35 # Plugin sources
36 libanjuta_jhbuild_la_SOURCES = \
37         plugin.c \
38         plugin.h
40 libanjuta_jhbuild_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
41 libanjuta_jhbuild_la_LIBADD = \
42         $(LIBANJUTA_LIBS)
44 EXTRA_DIST = \
45         $(plugin_in_files)
47 -include $(top_srcdir)/git.mk