]> git.ipfire.org Git - oddments/collecty.git/blame - Makefile.am
psi: Add graph template
[oddments/collecty.git] / Makefile.am
CommitLineData
2fc9f9a2
MT
1###############################################################################
2# #
3# collecty - The IPFire statictics collection daemon #
4# Copyright (C) 2015 collecty development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22AM_MAKEFLAGS = --no-print-directory
23AUTOMAKE_OPTIONS = color-tests
24
25# remove target it the command fails
26.DELETE_ON_ERROR:
27
28# keep itermediate files
29.SECONDARY:
30
31SUBDIRS = . po
32
33pythondir = $(pyexecdir)
34
c968f6d9
MT
35# Dirs of external packages
36dbuspolicydir=@dbuspolicydir@
37dbussystemservicedir=@dbussystemservicedir@
38
2fc9f9a2
MT
39CLEANFILES =
40DISTCLEANFILES =
41EXTRA_DIST =
42INSTALL_DIRS =
43noinst_DATA =
44
45@INTLTOOL_POLICY_RULE@
46
47.PHONY: update-po
e3f84d1b 48update-po: po/POTFILES.in
2fc9f9a2
MT
49 $(MAKE) -C po update-po
50
e3f84d1b
MT
51po/POTFILES.in: Makefile
52 find $(abs_srcdir)/src | \
53 grep -E "\.(in|py)$$" | sed -e "s@$(abs_srcdir)/@@g" | sort > $@
54
2fc9f9a2 55DISTCHECK_CONFIGURE_FLAGS = \
c968f6d9
MT
56 --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
57 --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
2fc9f9a2
MT
58 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
59
60# ------------------------------------------------------------------------------
61
62AM_V_XSLT = $(AM_V_XSLT_$(V))
63AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
64AM_V_XSLT_0 = @echo " XSLT " $@;
65
66# ------------------------------------------------------------------------------
67
68dist_doc_DATA = \
69 COPYING
70
71# ------------------------------------------------------------------------------
72
73dist_bin_SCRIPTS = \
ce3e3333
MT
74 src/scripts/collecty
75
76dist_sbin_SCRIPTS = \
ae06a580 77 src/scripts/collectyd
2fc9f9a2
MT
78
79collecty_PYTHON = \
80 src/collecty/__init__.py \
73241420 81 src/collecty/__version__.py \
c968f6d9 82 src/collecty/bus.py \
2fc9f9a2 83 src/collecty/client.py \
9823dfef 84 src/collecty/colours.py \
2fc9f9a2
MT
85 src/collecty/constants.py \
86 src/collecty/daemon.py \
87 src/collecty/errors.py \
88 src/collecty/i18n.py \
9823dfef
MT
89 src/collecty/logger.py \
90 src/collecty/util.py
2fc9f9a2
MT
91
92collectydir = $(pythondir)/collecty
93
94collectyplugins_PYTHON = \
95 src/collecty/plugins/base.py \
27f02dbd 96 src/collecty/plugins/contextswitches.py \
0ec1854a 97 src/collecty/plugins/conntrack.py \
81b24bab 98 src/collecty/plugins/cpufreq.py \
9823dfef 99 src/collecty/plugins/df.py \
30777a6c 100 src/collecty/plugins/disk.py \
2fc9f9a2
MT
101 src/collecty/plugins/__init__.py \
102 src/collecty/plugins/interface.py \
5125dbcd 103 src/collecty/plugins/interrupts.py \
29455c5f 104 src/collecty/plugins/ipfrag.py \
2fc9f9a2
MT
105 src/collecty/plugins/latency.py \
106 src/collecty/plugins/loadavg.py \
c389fccf 107 src/collecty/plugins/memory.py \
fdf41d34 108 src/collecty/plugins/psi.py \
af16115b 109 src/collecty/plugins/processor.py \
c389fccf 110 src/collecty/plugins/sensors.py
2fc9f9a2
MT
111
112collectypluginsdir = $(collectydir)/plugins
113
30777a6c
MT
114pkgpyexec_LTLIBRARIES = \
115 _collecty.la
116
117_collecty_la_SOURCES = \
86d23308
MT
118 src/_collecty/_collectymodule.c \
119 src/_collecty/_collectymodule.h \
120 src/_collecty/blockdev.c \
121 src/_collecty/ping.c \
122 src/_collecty/sensors.c \
123 src/_collecty/utils.c
30777a6c
MT
124
125_collecty_la_CFLAGS = \
126 $(AM_CFLAGS) \
127 $(LIBATASMART_CFLAGS) \
63f9f8be 128 $(OPING_CFLAGS) \
297fa319 129 $(PYTHON_CFLAGS)
30777a6c
MT
130
131_collecty_la_LDFLAGS = \
132 $(AM_LDFLAGS) \
133 -shared \
134 -module \
135 -avoid-version
136
137_collecty_la_LIBADD = \
138 $(LIBATASMART_LIBS) \
63f9f8be 139 $(OPING_LIBS) \
297fa319 140 $(PYTHON_LIBS) \
c389fccf 141 $(SENSORS_LIBS)
30777a6c 142
c968f6d9
MT
143dist_dbuspolicy_DATA = \
144 src/dbus/org.ipfire.collecty1.conf
145
146dist_dbussystemservice_DATA = \
147 src/dbus/org.ipfire.collecty1.service
148
149systemdsystemunit_DATA = \
150 src/systemd/collecty.service
151
152dist_systemdsystemunit_DATA = \
153 src/systemd/org.ipfire.collecty1.busname
154
155EXTRA_DIST += \
156 src/systemd/collecty.service.in
157
158CLEANFILES += \
159 src/systemd/collecty.service
160
2fc9f9a2
MT
161# ------------------------------------------------------------------------------
162
4bf8d546
MT
163.PHONY: man
164man: $(MANPAGES) $(MANPAGES_HTML)
165
2fc9f9a2
MT
166if ENABLE_MANPAGES
167MANPAGES = \
168 man/collectyd.1
169
170MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
171MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
172
2fc9f9a2
MT
173man_MANS = \
174 $(MANPAGES)
175
176noinst_DATA += \
177 $(MANPAGES_HTML)
178
179CLEANFILES += \
180 $(man_MANS) \
181 $(MANPAGES_HTML)
182
183EXTRA_DIST += \
184 $(MANPAGES_XML) \
185 man/custom-html.xsl
186
187XSLTPROC_FLAGS = \
188 --nonet \
189 --stringparam man.output.quietly 1 \
190 --stringparam funcsynopsis.style ansi \
191 --stringparam man.th.extra1.suppress 1 \
192 --stringparam man.authors.section.enabled 1 \
193 --stringparam man.copyright.section.enabled 1
194
195XSLTPROC_COMMAND_MAN = \
196 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
197 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
198
199XSLTPROC_COMMAND_HTML = \
200 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
201
202man/%.1: man/%.xml
203 $(XSLTPROC_COMMAND_MAN)
204
205man/%.5: man/%.xml
206 $(XSLTPROC_COMMAND_MAN)
207
208man/%.html: man/%.xml man/custom-html.xsl
209 $(XSLTPROC_COMMAND_HTML)
210
211endif
212
213# ------------------------------------------------------------------------------
214
2fc9f9a2
MT
215substitutions = \
216 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
217 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
218 '|configsdir=$(configsdir)|' \
f41f7ab2
MT
219 '|bindir=$(bindir)|' \
220 '|sbindir=$(sbindir)|'
2fc9f9a2
MT
221
222SED_PROCESS = \
223 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
224 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
225 < $< > $@
226
227src/systemd/%: src/systemd/%.in Makefile
228 $(SED_PROCESS)