2011-11-07 13:46:58 -06:00
|
|
|
# Modelines Plugin
|
2016-01-25 08:13:49 -06:00
|
|
|
plugindir = $(XEDIT_PLUGINS_LIBS_DIR)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2013-08-02 17:08:36 -05:00
|
|
|
AM_CPPFLAGS = \
|
2011-11-07 13:46:58 -06:00
|
|
|
-I$(top_srcdir) \
|
2016-01-25 08:13:49 -06:00
|
|
|
$(XEDIT_CFLAGS) \
|
2011-11-07 13:46:58 -06:00
|
|
|
$(WARN_CFLAGS) \
|
|
|
|
$(DISABLE_DEPRECATED_CFLAGS)
|
|
|
|
|
2016-01-25 08:13:49 -06:00
|
|
|
modelinesdir = $(XEDIT_PLUGINS_DATA_DIR)/modelines
|
2011-11-07 13:46:58 -06:00
|
|
|
modelines_DATA = \
|
|
|
|
language-mappings
|
|
|
|
|
|
|
|
plugin_LTLIBRARIES = libmodelines.la
|
|
|
|
|
|
|
|
libmodelines_la_SOURCES = \
|
2016-01-25 08:13:49 -06:00
|
|
|
xedit-modeline-plugin.h \
|
|
|
|
xedit-modeline-plugin.c \
|
2011-11-07 13:46:58 -06:00
|
|
|
modeline-parser.h \
|
|
|
|
modeline-parser.c
|
|
|
|
|
|
|
|
libmodelines_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
|
2016-01-25 08:13:49 -06:00
|
|
|
libmodelines_la_LIBADD = $(XEDIT_LIBS)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-01-25 08:13:49 -06:00
|
|
|
plugin_in_files = modelines.xedit-plugin.desktop.in
|
|
|
|
%.xedit-plugin: %.xedit-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
|
|
|
|
2016-01-25 08:13:49 -06:00
|
|
|
plugin_DATA = $(plugin_in_files:.xedit-plugin.desktop.in=.xedit-plugin)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
$(plugin_in_files) \
|
|
|
|
$(modelines_DATA)
|
|
|
|
|
|
|
|
CLEANFILES = $(plugin_DATA)
|
|
|
|
DISTCLEANFILES = $(plugin_DATA)
|
|
|
|
|
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|