File: Makefile.am

package info (click to toggle)
anjuta 2%3A3.34.0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 72,440 kB
  • sloc: ansic: 207,444; sh: 47,499; cpp: 11,461; makefile: 3,586; yacc: 2,821; perl: 2,094; lex: 1,546; xml: 904; python: 149; sql: 99; javascript: 51; java: 10
file content (79 lines) | stat: -rw-r--r-- 1,964 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

# Plugin glade file
build_gladedir = $(anjuta_glade_dir)
dist_build_glade_DATA = anjuta-build-basic-autotools-plugin.ui

# Plugin UI file
build_uidir = $(anjuta_ui_dir)
dist_build_ui_DATA = anjuta-build-basic-autotools-plugin.xml

# Plugin Icon file
build_pixmapsdir = $(anjuta_image_dir)
dist_build_pixmaps_DATA = \
	anjuta-build-basic-autotools-plugin-48.png \
	anjuta-build-basic-autotools-plugin.svg \
	anjuta-build-16.png \
	anjuta-build-24.png

# Plugin description file
plugin_in_files = anjuta-build-basic-autotools.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

build_plugindir = $(anjuta_plugin_dir)
dist_build_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)

# Plugin data files
build_datadir = $(anjuta_data_dir)/build
dist_build_data_DATA = automake-c.filters

# Include paths
AM_CPPFLAGS = \
	$(WARN_CFLAGS) \
	$(DEPRECATED_FLAGS) \
	$(LIBANJUTA_CFLAGS)

AM_CFLAGS += \
	-Wno-error=format-nonliteral

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

# The plugin
plugin_LTLIBRARIES = libanjuta-build-basic-autotools.la

# Plugin sources
libanjuta_build_basic_autotools_la_SOURCES = \
	plugin.c \
	plugin.h \
	executer.c \
	executer.h \
	build.c \
	build.h \
	build-options.c \
	build-options.h \
	configuration-list.c \
	configuration-list.h \
	program.c \
	program.h

# Plugin dependencies
libanjuta_build_basic_autotools_la_LIBADD = \
	$(GIO_LIBS) \
	$(LIBANJUTA_LIBS)

libanjuta_build_basic_autotools_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)

gsettings_in_file = org.gnome.anjuta.plugins.build.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