Makefile.am 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
  2. CLEANFILES = \
  3. python-modules-installer.sh \
  4. $(NULL)
  5. include $(top_srcdir)/build/subst.inc
  6. SUFFIXES = .in
  7. dist_python_SCRIPTS = \
  8. python-modules-installer.sh \
  9. $(NULL)
  10. dist_python_DATA = \
  11. README.md \
  12. apache.chart.py \
  13. apache_cache.chart.py \
  14. bind_rndc.chart.py \
  15. chrony.chart.py \
  16. couchdb.chart.py \
  17. cpufreq.chart.py \
  18. cpuidle.chart.py \
  19. dns_query_time.chart.py \
  20. dovecot.chart.py \
  21. elasticsearch.chart.py \
  22. example.chart.py \
  23. exim.chart.py \
  24. fail2ban.chart.py \
  25. freeradius.chart.py \
  26. go_expvar.chart.py \
  27. haproxy.chart.py \
  28. hddtemp.chart.py \
  29. ipfs.chart.py \
  30. isc_dhcpd.chart.py \
  31. mdstat.chart.py \
  32. memcached.chart.py \
  33. mongodb.chart.py \
  34. mysql.chart.py \
  35. nginx.chart.py \
  36. nsd.chart.py \
  37. ovpn_status_log.chart.py \
  38. phpfpm.chart.py \
  39. postfix.chart.py \
  40. postgres.chart.py \
  41. powerdns.chart.py \
  42. rabbitmq.chart.py \
  43. redis.chart.py \
  44. retroshare.chart.py \
  45. samba.chart.py \
  46. sensors.chart.py \
  47. squid.chart.py \
  48. smartd_log.chart.py \
  49. tomcat.chart.py \
  50. varnish.chart.py \
  51. web_log.chart.py \
  52. $(NULL)
  53. pythonmodulesdir=$(pythondir)/python_modules
  54. dist_pythonmodules_DATA = \
  55. python_modules/__init__.py \
  56. python_modules/base.py \
  57. python_modules/msg.py \
  58. python_modules/lm_sensors.py \
  59. $(NULL)
  60. pythonyaml2dir=$(pythonmodulesdir)/pyyaml2
  61. dist_pythonyaml2_DATA = \
  62. python_modules/pyyaml2/__init__.py \
  63. python_modules/pyyaml2/composer.py \
  64. python_modules/pyyaml2/constructor.py \
  65. python_modules/pyyaml2/cyaml.py \
  66. python_modules/pyyaml2/dumper.py \
  67. python_modules/pyyaml2/emitter.py \
  68. python_modules/pyyaml2/error.py \
  69. python_modules/pyyaml2/events.py \
  70. python_modules/pyyaml2/loader.py \
  71. python_modules/pyyaml2/nodes.py \
  72. python_modules/pyyaml2/parser.py \
  73. python_modules/pyyaml2/reader.py \
  74. python_modules/pyyaml2/representer.py \
  75. python_modules/pyyaml2/resolver.py \
  76. python_modules/pyyaml2/scanner.py \
  77. python_modules/pyyaml2/serializer.py \
  78. python_modules/pyyaml2/tokens.py \
  79. $(NULL)
  80. pythonyaml3dir=$(pythonmodulesdir)/pyyaml3
  81. dist_pythonyaml3_DATA = \
  82. python_modules/pyyaml3/__init__.py \
  83. python_modules/pyyaml3/composer.py \
  84. python_modules/pyyaml3/constructor.py \
  85. python_modules/pyyaml3/cyaml.py \
  86. python_modules/pyyaml3/dumper.py \
  87. python_modules/pyyaml3/emitter.py \
  88. python_modules/pyyaml3/error.py \
  89. python_modules/pyyaml3/events.py \
  90. python_modules/pyyaml3/loader.py \
  91. python_modules/pyyaml3/nodes.py \
  92. python_modules/pyyaml3/parser.py \
  93. python_modules/pyyaml3/reader.py \
  94. python_modules/pyyaml3/representer.py \
  95. python_modules/pyyaml3/resolver.py \
  96. python_modules/pyyaml3/scanner.py \
  97. python_modules/pyyaml3/serializer.py \
  98. python_modules/pyyaml3/tokens.py \
  99. $(NULL)
  100. python_urllib3dir=$(pythonmodulesdir)/urllib3
  101. dist_python_urllib3_DATA = \
  102. python_modules/urllib3/__init__.py \
  103. python_modules/urllib3/_collections.py \
  104. python_modules/urllib3/connection.py \
  105. python_modules/urllib3/connectionpool.py \
  106. python_modules/urllib3/exceptions.py \
  107. python_modules/urllib3/fields.py \
  108. python_modules/urllib3/filepost.py \
  109. python_modules/urllib3/response.py \
  110. python_modules/urllib3/poolmanager.py \
  111. python_modules/urllib3/request.py \
  112. $(NULL)
  113. python_urllib3_utildir=$(python_urllib3dir)/util
  114. dist_python_urllib3_util_DATA = \
  115. python_modules/urllib3/util/__init__.py \
  116. python_modules/urllib3/util/connection.py \
  117. python_modules/urllib3/util/request.py \
  118. python_modules/urllib3/util/response.py \
  119. python_modules/urllib3/util/retry.py \
  120. python_modules/urllib3/util/selectors.py \
  121. python_modules/urllib3/util/ssl_.py \
  122. python_modules/urllib3/util/timeout.py \
  123. python_modules/urllib3/util/url.py \
  124. python_modules/urllib3/util/wait.py \
  125. $(NULL)
  126. python_urllib3_packagesdir=$(python_urllib3dir)/packages
  127. dist_python_urllib3_packages_DATA = \
  128. python_modules/urllib3/packages/__init__.py \
  129. python_modules/urllib3/packages/ordered_dict.py \
  130. python_modules/urllib3/packages/six.py \
  131. $(NULL)
  132. python_urllib3_backportsdir=$(python_urllib3_packagesdir)/backports
  133. dist_python_urllib3_backports_DATA = \
  134. python_modules/urllib3/packages/backports/__init__.py \
  135. python_modules/urllib3/packages/backports/makefile.py \
  136. $(NULL)
  137. python_urllib3_ssl_match_hostnamedir=$(python_urllib3_packagesdir)/ssl_match_hostname
  138. dist_python_urllib3_ssl_match_hostname_DATA = \
  139. python_modules/urllib3/packages/ssl_match_hostname/__init__.py \
  140. python_modules/urllib3/packages/ssl_match_hostname/_implementation.py \
  141. $(NULL)
  142. python_urllib3_contribdir=$(python_urllib3dir)/contrib
  143. dist_python_urllib3_contrib_DATA = \
  144. python_modules/urllib3/contrib/__init__.py \
  145. python_modules/urllib3/contrib/appengine.py \
  146. python_modules/urllib3/contrib/ntlmpool.py \
  147. python_modules/urllib3/contrib/pyopenssl.py \
  148. python_modules/urllib3/contrib/securetransport.py \
  149. python_modules/urllib3/contrib/socks.py \
  150. $(NULL)
  151. python_urllib3_securetransportdir=$(python_urllib3_contribdir)/_securetransport
  152. dist_python_urllib3_securetransport_DATA = \
  153. python_modules/urllib3/contrib/_securetransport/__init__.py \
  154. python_modules/urllib3/contrib/_securetransport/bindings.py \
  155. python_modules/urllib3/contrib/_securetransport/low_level.py \
  156. $(NULL)