]> git.ipfire.org Git - collecty.git/blame - Makefile.am
Introduce a colour scheme and fix design of the graphs
[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
48update-po:
49 $(MAKE) -C po update-po
50
51DISTCHECK_CONFIGURE_FLAGS = \
c968f6d9
MT
52 --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
53 --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
2fc9f9a2
MT
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 \
73241420 75 src/collecty/__version__.py \
c968f6d9 76 src/collecty/bus.py \
2fc9f9a2 77 src/collecty/client.py \
9823dfef 78 src/collecty/colours.py \
2fc9f9a2
MT
79 src/collecty/constants.py \
80 src/collecty/daemon.py \
81 src/collecty/errors.py \
82 src/collecty/i18n.py \
429ba506 83 src/collecty/locales.py \
9823dfef
MT
84 src/collecty/logger.py \
85 src/collecty/util.py
2fc9f9a2
MT
86
87collectydir = $(pythondir)/collecty
88
89collectyplugins_PYTHON = \
90 src/collecty/plugins/base.py \
27f02dbd 91 src/collecty/plugins/contextswitches.py \
0ec1854a 92 src/collecty/plugins/conntrack.py \
81b24bab 93 src/collecty/plugins/cpufreq.py \
9823dfef 94 src/collecty/plugins/df.py \
30777a6c 95 src/collecty/plugins/disk.py \
2fc9f9a2
MT
96 src/collecty/plugins/entropy.py \
97 src/collecty/plugins/__init__.py \
98 src/collecty/plugins/interface.py \
5125dbcd 99 src/collecty/plugins/interrupts.py \
29455c5f 100 src/collecty/plugins/ipfrag.py \
2fc9f9a2
MT
101 src/collecty/plugins/latency.py \
102 src/collecty/plugins/loadavg.py \
c389fccf 103 src/collecty/plugins/memory.py \
af16115b 104 src/collecty/plugins/processor.py \
c389fccf 105 src/collecty/plugins/sensors.py
2fc9f9a2
MT
106
107collectypluginsdir = $(collectydir)/plugins
108
30777a6c
MT
109pkgpyexec_LTLIBRARIES = \
110 _collecty.la
111
112_collecty_la_SOURCES = \
113 src/_collectymodule.c
114
115_collecty_la_CFLAGS = \
116 $(AM_CFLAGS) \
117 $(LIBATASMART_CFLAGS) \
63f9f8be 118 $(OPING_CFLAGS) \
297fa319 119 $(PYTHON_CFLAGS)
30777a6c
MT
120
121_collecty_la_LDFLAGS = \
122 $(AM_LDFLAGS) \
123 -shared \
124 -module \
125 -avoid-version
126
127_collecty_la_LIBADD = \
128 $(LIBATASMART_LIBS) \
63f9f8be 129 $(OPING_LIBS) \
297fa319 130 $(PYTHON_LIBS) \
c389fccf 131 $(SENSORS_LIBS)
30777a6c 132
c968f6d9
MT
133dist_dbuspolicy_DATA = \
134 src/dbus/org.ipfire.collecty1.conf
135
136dist_dbussystemservice_DATA = \
137 src/dbus/org.ipfire.collecty1.service
138
139systemdsystemunit_DATA = \
140 src/systemd/collecty.service
141
142dist_systemdsystemunit_DATA = \
143 src/systemd/org.ipfire.collecty1.busname
144
145EXTRA_DIST += \
146 src/systemd/collecty.service.in
147
148CLEANFILES += \
149 src/systemd/collecty.service
150
2fc9f9a2
MT
151# ------------------------------------------------------------------------------
152
153if ENABLE_MANPAGES
154MANPAGES = \
155 man/collectyd.1
156
157MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
158MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
159
160man: $(MANPAGES) $(MANPAGES_HTML)
161
162man_MANS = \
163 $(MANPAGES)
164
165noinst_DATA += \
166 $(MANPAGES_HTML)
167
168CLEANFILES += \
169 $(man_MANS) \
170 $(MANPAGES_HTML)
171
172EXTRA_DIST += \
173 $(MANPAGES_XML) \
174 man/custom-html.xsl
175
176XSLTPROC_FLAGS = \
177 --nonet \
178 --stringparam man.output.quietly 1 \
179 --stringparam funcsynopsis.style ansi \
180 --stringparam man.th.extra1.suppress 1 \
181 --stringparam man.authors.section.enabled 1 \
182 --stringparam man.copyright.section.enabled 1
183
184XSLTPROC_COMMAND_MAN = \
185 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
186 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
187
188XSLTPROC_COMMAND_HTML = \
189 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
190
191man/%.1: man/%.xml
192 $(XSLTPROC_COMMAND_MAN)
193
194man/%.5: man/%.xml
195 $(XSLTPROC_COMMAND_MAN)
196
197man/%.html: man/%.xml man/custom-html.xsl
198 $(XSLTPROC_COMMAND_HTML)
199
200endif
201
202# ------------------------------------------------------------------------------
203
2fc9f9a2
MT
204substitutions = \
205 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
206 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
207 '|configsdir=$(configsdir)|' \
208 '|bindir=$(bindir)|'
209
210SED_PROCESS = \
211 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
212 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
213 < $< > $@
214
215src/systemd/%: src/systemd/%.in Makefile
216 $(SED_PROCESS)