2011-11-07 13:46:58 -06:00
|
|
|
# sort plugin
|
2011-11-07 16:52:18 -06:00
|
|
|
plugindir = $(PLUMA_PLUGINS_LIBS_DIR)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
2011-11-07 16:52:18 -06:00
|
|
|
$(PLUMA_CFLAGS) \
|
2011-11-07 13:46:58 -06:00
|
|
|
$(WARN_CFLAGS) \
|
|
|
|
$(DISABLE_DEPRECATED_CFLAGS)
|
|
|
|
|
|
|
|
plugin_LTLIBRARIES = libsort.la
|
|
|
|
|
|
|
|
libsort_la_SOURCES = \
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma-sort-plugin.h \
|
|
|
|
pluma-sort-plugin.c
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
libsort_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
|
2011-11-07 16:52:18 -06:00
|
|
|
libsort_la_LIBADD = $(PLUMA_LIBS)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
uidir = $(PLUMA_PLUGINS_DATA_DIR)/sort
|
2011-11-07 13:46:58 -06:00
|
|
|
ui_DATA = sort.ui
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
plugin_in_files = sort.pluma-plugin.desktop.in
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
%.pluma-plugin: %.pluma-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
plugin_DATA = $(plugin_in_files:.pluma-plugin.desktop.in=.pluma-plugin)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
EXTRA_DIST = $(ui_DATA) $(plugin_in_files)
|
|
|
|
|
|
|
|
CLEANFILES = $(plugin_DATA)
|
|
|
|
DISTCLEANFILES = $(plugin_DATA)
|
|
|
|
|
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|