File: Makefile.am

package info (click to toggle)
anjuta 2%3A3.34.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 72,196 kB
  • sloc: ansic: 207,444; sh: 47,499; cpp: 11,461; makefile: 3,588; yacc: 2,821; perl: 2,094; lex: 1,546; xml: 904; python: 149; sql: 99; java: 10
file content (56 lines) | stat: -rw-r--r-- 1,657 bytes parent folder | download | duplicates (3)
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
54
55
56
# Plugin UI files
indent_python_uidir = $(anjuta_ui_dir)
dist_indent_python_ui_DATA = anjuta-indentation-python-style.xml

# Plugin Glade file
indent_python_gladedir = $(anjuta_glade_dir)
dist_indent_python_glade_DATA = anjuta-indentation-python-style.ui

# Plugin Icon file
indent_python_pixmapsdir = $(anjuta_image_dir)
dist_indent_python_pixmaps_DATA = anjuta-indentation-python-style-plugin.png

# Plugin description file
plugin_in_files = anjuta-indentation-python-style.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

indent_python_plugindir = $(anjuta_plugin_dir)
dist_indent_python_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)

AM_CPPFLAGS = \
	$(XML_CFLAGS) \
	$(LIBANJUTA_CFLAGS) \
	-DG_LOG_DOMAIN=\"indentation-python-style\"

# Where to install the plugin
plugindir = $(anjuta_plugin_dir)

# The plugin
plugin_LTLIBRARIES = libanjuta-indentation-python-style.la

# Plugin sources
libanjuta_indentation_python_style_la_SOURCES = \
	plugin.c \
	plugin.h \
	python-indentation.c \
	python-indentation.h

libanjuta_indentation_python_style_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)

# Plugin dependencies
libanjuta_indentation_python_style_la_LIBADD = $(LIBANJUTA_LIBS) 

gsettings_in_file = org.gnome.anjuta.plugins.indent-python.gschema.xml.in
gsettings_SCHEMAS = $(gsettings_in_file:.xml.in=.xml)
@INTLTOOL_XML_NOMERGE_RULE@
@GSETTINGS_RULES@

EXTRA_DIST = \
	$(plugin_in_files) \
  $(gsettings_in_file)

CLEANFILES = \
	$(gsettings_SCHEMAS) \
	$(plugin_in_files:.plugin.in=.plugin)

-include $(top_srcdir)/git.mk