]> git.ipfire.org Git - collecty.git/blame_incremental - Makefile.am
Rename cpu plugin to 'processor'
[collecty.git] / Makefile.am
... / ...
CommitLineData
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
35# Dirs of external packages
36dbuspolicydir=@dbuspolicydir@
37dbussystemservicedir=@dbussystemservicedir@
38
39CLEANFILES =
40DISTCLEANFILES =
41EXTRA_DIST =
42INSTALL_DIRS =
43noinst_DATA =
44
45@INTLTOOL_POLICY_RULE@
46
47.PHONY: update-po
48update-po:
49 $(MAKE) -C po update-po
50
51DISTCHECK_CONFIGURE_FLAGS = \
52 --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
53 --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
54 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
55
56# ------------------------------------------------------------------------------
57
58AM_V_XSLT = $(AM_V_XSLT_$(V))
59AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
60AM_V_XSLT_0 = @echo " XSLT " $@;
61
62# ------------------------------------------------------------------------------
63
64dist_doc_DATA = \
65 COPYING
66
67# ------------------------------------------------------------------------------
68
69dist_bin_SCRIPTS = \
70 src/collectyd \
71 src/collecty-client
72
73collecty_PYTHON = \
74 src/collecty/__init__.py \
75 src/collecty/__version__.py \
76 src/collecty/bus.py \
77 src/collecty/client.py \
78 src/collecty/constants.py \
79 src/collecty/daemon.py \
80 src/collecty/errors.py \
81 src/collecty/i18n.py \
82 src/collecty/locales.py \
83 src/collecty/logger.py
84
85collectydir = $(pythondir)/collecty
86
87collectyplugins_PYTHON = \
88 src/collecty/plugins/base.py \
89 src/collecty/plugins/conntrack.py \
90 src/collecty/plugins/cpufreq.py \
91 src/collecty/plugins/disk.py \
92 src/collecty/plugins/entropy.py \
93 src/collecty/plugins/__init__.py \
94 src/collecty/plugins/interface.py \
95 src/collecty/plugins/latency.py \
96 src/collecty/plugins/loadavg.py \
97 src/collecty/plugins/memory.py \
98 src/collecty/plugins/processor.py \
99 src/collecty/plugins/sensors.py
100
101collectypluginsdir = $(collectydir)/plugins
102
103pkgpyexec_LTLIBRARIES = \
104 _collecty.la
105
106_collecty_la_SOURCES = \
107 src/_collectymodule.c
108
109_collecty_la_CFLAGS = \
110 $(AM_CFLAGS) \
111 $(LIBATASMART_CFLAGS) \
112 $(OPING_CFLAGS) \
113 $(PYTHON_CFLAGS)
114
115_collecty_la_LDFLAGS = \
116 $(AM_LDFLAGS) \
117 -shared \
118 -module \
119 -avoid-version
120
121_collecty_la_LIBADD = \
122 $(LIBATASMART_LIBS) \
123 $(OPING_LIBS) \
124 $(PYTHON_LIBS) \
125 $(SENSORS_LIBS)
126
127dist_dbuspolicy_DATA = \
128 src/dbus/org.ipfire.collecty1.conf
129
130dist_dbussystemservice_DATA = \
131 src/dbus/org.ipfire.collecty1.service
132
133systemdsystemunit_DATA = \
134 src/systemd/collecty.service
135
136dist_systemdsystemunit_DATA = \
137 src/systemd/org.ipfire.collecty1.busname
138
139EXTRA_DIST += \
140 src/systemd/collecty.service.in
141
142CLEANFILES += \
143 src/systemd/collecty.service
144
145# ------------------------------------------------------------------------------
146
147if ENABLE_MANPAGES
148MANPAGES = \
149 man/collectyd.1
150
151MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
152MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
153
154man: $(MANPAGES) $(MANPAGES_HTML)
155
156man_MANS = \
157 $(MANPAGES)
158
159noinst_DATA += \
160 $(MANPAGES_HTML)
161
162CLEANFILES += \
163 $(man_MANS) \
164 $(MANPAGES_HTML)
165
166EXTRA_DIST += \
167 $(MANPAGES_XML) \
168 man/custom-html.xsl
169
170XSLTPROC_FLAGS = \
171 --nonet \
172 --stringparam man.output.quietly 1 \
173 --stringparam funcsynopsis.style ansi \
174 --stringparam man.th.extra1.suppress 1 \
175 --stringparam man.authors.section.enabled 1 \
176 --stringparam man.copyright.section.enabled 1
177
178XSLTPROC_COMMAND_MAN = \
179 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
180 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
181
182XSLTPROC_COMMAND_HTML = \
183 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
184
185man/%.1: man/%.xml
186 $(XSLTPROC_COMMAND_MAN)
187
188man/%.5: man/%.xml
189 $(XSLTPROC_COMMAND_MAN)
190
191man/%.html: man/%.xml man/custom-html.xsl
192 $(XSLTPROC_COMMAND_HTML)
193
194endif
195
196# ------------------------------------------------------------------------------
197
198substitutions = \
199 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
200 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
201 '|configsdir=$(configsdir)|' \
202 '|bindir=$(bindir)|'
203
204SED_PROCESS = \
205 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
206 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
207 < $< > $@
208
209src/systemd/%: src/systemd/%.in Makefile
210 $(SED_PROCESS)