1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# Plugin UI file
patch_uidir = $(anjuta_ui_dir)
dist_patch_ui_DATA = anjuta-patch.xml
# Plugin glade file
patch_gladedir = $(anjuta_glade_dir)
dist_patch_glade_DATA = patch-plugin.ui
# Plugin Icon file
patch_pixmapsdir = $(anjuta_image_dir)
dist_patch_pixmaps_DATA = \
anjuta-patch-plugin.svg \
anjuta-patch-plugin-48.png
# Plugin description file
plugin_in_files = anjuta-patch.plugin.in
%.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
patch_plugindir = $(anjuta_plugin_dir)
dist_patch_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
# Include paths
AM_CPPFLAGS= \
$(WARN_CFLAGS) \
$(DEPRECATED_FLAGS) \
$(LIBANJUTA_CFLAGS)
# Where to install the plugin
plugindir = $(anjuta_plugin_dir)
# The plugin
plugin_LTLIBRARIES = libanjuta-patch.la
# Plugin sources
libanjuta_patch_la_SOURCES = \
plugin.c \
plugin.h \
patch-plugin.c \
patch-plugin.h
libanjuta_patch_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
# Plugin dependencies
libanjuta_patch_la_LIBADD = \
$(LIBANJUTA_LIBS)
EXTRA_DIST = \
$(plugin_in_files)
CLEANFILES = $(plugin_in_files:.plugin.in=.plugin)
-include $(top_srcdir)/git.mk
|