summaryrefslogtreecommitdiffstats
path: root/python.d/Makefile.am
blob: 883f06c4cd0a19725025074fd9b3519d3b27621e (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
CLEANFILES = \
    python-modules-installer.sh \
    $(NULL)

include $(top_srcdir)/build/subst.inc

SUFFIXES = .in

dist_python_SCRIPTS = \
    apache.chart.py \
    apache_cache.chart.py \
    bind_rndc.chart.py \
    cpufreq.chart.py \
    cpuidle.chart.py \
    dovecot.chart.py \
    elasticsearch.chart.py \
    example.chart.py \
    exim.chart.py \
    fail2ban.chart.py \
    freeradius.chart.py \
    gunicorn_log.chart.py \
    haproxy.chart.py \
    hddtemp.chart.py \
    ipfs.chart.py \
    isc_dhcpd.chart.py \
    mdstat.chart.py \
    memcached.chart.py \
    mysql.chart.py \
    nginx.chart.py \
    nginx_log.chart.py \
    ovpn_status_log.chart.py \
    phpfpm.chart.py \
    postfix.chart.py \
    postgres.chart.py \
    redis.chart.py \
    retroshare.chart.py \
    sensors.chart.py \
    squid.chart.py \
    tomcat.chart.py \
    varnish.chart.py \
    python-modules-installer.sh \
    $(NULL)

dist_python_DATA = \
    README.md \
    $(NULL)

pythonmodulesdir=$(pythondir)/python_modules
dist_pythonmodules_DATA = \
    python_modules/__init__.py \
    python_modules/base.py \
    python_modules/msg.py \
    python_modules/lm_sensors.py \
    $(NULL)

pythonyaml2dir=$(pythonmodulesdir)/pyyaml2
dist_pythonyaml2_DATA = \
    python_modules/pyyaml2/__init__.py \
    python_modules/pyyaml2/composer.py \
    python_modules/pyyaml2/constructor.py \
    python_modules/pyyaml2/cyaml.py \
    python_modules/pyyaml2/dumper.py \
    python_modules/pyyaml2/emitter.py \
    python_modules/pyyaml2/error.py \
    python_modules/pyyaml2/events.py \
    python_modules/pyyaml2/loader.py \
    python_modules/pyyaml2/nodes.py \
    python_modules/pyyaml2/parser.py \
    python_modules/pyyaml2/reader.py \
    python_modules/pyyaml2/representer.py \
    python_modules/pyyaml2/resolver.py \
    python_modules/pyyaml2/scanner.py \
    python_modules/pyyaml2/serializer.py \
    python_modules/pyyaml2/tokens.py \
    $(NULL)

pythonyaml3dir=$(pythonmodulesdir)/pyyaml3
dist_pythonyaml3_DATA = \
    python_modules/pyyaml3/__init__.py \
    python_modules/pyyaml3/composer.py \
    python_modules/pyyaml3/constructor.py \
    python_modules/pyyaml3/cyaml.py \
    python_modules/pyyaml3/dumper.py \
    python_modules/pyyaml3/emitter.py \
    python_modules/pyyaml3/error.py \
    python_modules/pyyaml3/events.py \
    python_modules/pyyaml3/loader.py \
    python_modules/pyyaml3/nodes.py \
    python_modules/pyyaml3/parser.py \
    python_modules/pyyaml3/reader.py \
    python_modules/pyyaml3/representer.py \
    python_modules/pyyaml3/resolver.py \
    python_modules/pyyaml3/scanner.py \
    python_modules/pyyaml3/serializer.py \
    python_modules/pyyaml3/tokens.py \
    $(NULL)