]> arthur.barton.de Git - netdata.git/blob - python.d/Makefile.am
add memcached support
[netdata.git] / python.d / Makefile.am
1 MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
2 CLEANFILES = \
3         python-modules-installer.sh \
4         $(NULL)
5
6 include $(top_srcdir)/build/subst.inc
7
8 SUFFIXES = .in
9
10 dist_python_SCRIPTS = \
11         apache.chart.py \
12         apache_cache.chart.py \
13         cpufreq.chart.py \
14         example.chart.py \
15         exim.chart.py \
16         hddtemp.chart.py \
17         memcached.chart.py \
18         mysql.chart.py \
19         nginx.chart.py \
20         phpfpm.chart.py \
21         postfix.chart.py \
22         redis.chart.py \
23         sensors.chart.py \
24         squid.chart.py \
25         tomcat.chart.py \
26         python-modules-installer.sh \
27         $(NULL)
28
29 dist_python_DATA = \
30         README.md \
31         $(NULL)
32
33 pythonmodulesdir=$(pythondir)/python_modules
34 dist_pythonmodules_DATA = \
35         python_modules/__init__.py \
36         python_modules/base.py \
37         python_modules/msg.py \
38         python_modules/lm_sensors.py \
39         $(NULL)
40
41 pythonyaml2dir=$(pythonmodulesdir)/pyyaml2
42 dist_pythonyaml2_DATA = \
43     python_modules/pyyaml2/__init__.py \
44     python_modules/pyyaml2/composer.py \
45     python_modules/pyyaml2/constructor.py \
46     python_modules/pyyaml2/cyaml.py \
47     python_modules/pyyaml2/dumper.py \
48     python_modules/pyyaml2/emitter.py \
49     python_modules/pyyaml2/error.py \
50     python_modules/pyyaml2/events.py \
51     python_modules/pyyaml2/loader.py \
52     python_modules/pyyaml2/nodes.py \
53     python_modules/pyyaml2/parser.py \
54     python_modules/pyyaml2/reader.py \
55     python_modules/pyyaml2/representer.py \
56     python_modules/pyyaml2/resolver.py \
57     python_modules/pyyaml2/scanner.py \
58     python_modules/pyyaml2/serializer.py \
59     python_modules/pyyaml2/tokens.py \
60     $(NULL)
61
62 pythonyaml3dir=$(pythonmodulesdir)/pyyaml3
63 dist_pythonyaml3_DATA = \
64     python_modules/pyyaml3/__init__.py \
65     python_modules/pyyaml3/composer.py \
66     python_modules/pyyaml3/constructor.py \
67     python_modules/pyyaml3/cyaml.py \
68     python_modules/pyyaml3/dumper.py \
69     python_modules/pyyaml3/emitter.py \
70     python_modules/pyyaml3/error.py \
71     python_modules/pyyaml3/events.py \
72     python_modules/pyyaml3/loader.py \
73     python_modules/pyyaml3/nodes.py \
74     python_modules/pyyaml3/parser.py \
75     python_modules/pyyaml3/reader.py \
76     python_modules/pyyaml3/representer.py \
77     python_modules/pyyaml3/resolver.py \
78     python_modules/pyyaml3/scanner.py \
79     python_modules/pyyaml3/serializer.py \
80     python_modules/pyyaml3/tokens.py \
81     $(NULL)