Makefile.am 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. cpufreq.chart.py \
  16. cpuidle.chart.py \
  17. dns_query_time.chart.py \
  18. dovecot.chart.py \
  19. elasticsearch.chart.py \
  20. example.chart.py \
  21. exim.chart.py \
  22. fail2ban.chart.py \
  23. freeradius.chart.py \
  24. go_expvar.chart.py \
  25. haproxy.chart.py \
  26. hddtemp.chart.py \
  27. ipfs.chart.py \
  28. isc_dhcpd.chart.py \
  29. mdstat.chart.py \
  30. memcached.chart.py \
  31. mongodb.chart.py \
  32. mysql.chart.py \
  33. nginx.chart.py \
  34. nsd.chart.py \
  35. ovpn_status_log.chart.py \
  36. phpfpm.chart.py \
  37. postfix.chart.py \
  38. postgres.chart.py \
  39. rabbitmq.chart.py \
  40. redis.chart.py \
  41. retroshare.chart.py \
  42. samba.chart.py \
  43. sensors.chart.py \
  44. squid.chart.py \
  45. smartd_log.chart.py \
  46. tomcat.chart.py \
  47. varnish.chart.py \
  48. web_log.chart.py \
  49. $(NULL)
  50. pythonmodulesdir=$(pythondir)/python_modules
  51. dist_pythonmodules_DATA = \
  52. python_modules/__init__.py \
  53. python_modules/base.py \
  54. python_modules/msg.py \
  55. python_modules/lm_sensors.py \
  56. $(NULL)
  57. pythonyaml2dir=$(pythonmodulesdir)/pyyaml2
  58. dist_pythonyaml2_DATA = \
  59. python_modules/pyyaml2/__init__.py \
  60. python_modules/pyyaml2/composer.py \
  61. python_modules/pyyaml2/constructor.py \
  62. python_modules/pyyaml2/cyaml.py \
  63. python_modules/pyyaml2/dumper.py \
  64. python_modules/pyyaml2/emitter.py \
  65. python_modules/pyyaml2/error.py \
  66. python_modules/pyyaml2/events.py \
  67. python_modules/pyyaml2/loader.py \
  68. python_modules/pyyaml2/nodes.py \
  69. python_modules/pyyaml2/parser.py \
  70. python_modules/pyyaml2/reader.py \
  71. python_modules/pyyaml2/representer.py \
  72. python_modules/pyyaml2/resolver.py \
  73. python_modules/pyyaml2/scanner.py \
  74. python_modules/pyyaml2/serializer.py \
  75. python_modules/pyyaml2/tokens.py \
  76. $(NULL)
  77. pythonyaml3dir=$(pythonmodulesdir)/pyyaml3
  78. dist_pythonyaml3_DATA = \
  79. python_modules/pyyaml3/__init__.py \
  80. python_modules/pyyaml3/composer.py \
  81. python_modules/pyyaml3/constructor.py \
  82. python_modules/pyyaml3/cyaml.py \
  83. python_modules/pyyaml3/dumper.py \
  84. python_modules/pyyaml3/emitter.py \
  85. python_modules/pyyaml3/error.py \
  86. python_modules/pyyaml3/events.py \
  87. python_modules/pyyaml3/loader.py \
  88. python_modules/pyyaml3/nodes.py \
  89. python_modules/pyyaml3/parser.py \
  90. python_modules/pyyaml3/reader.py \
  91. python_modules/pyyaml3/representer.py \
  92. python_modules/pyyaml3/resolver.py \
  93. python_modules/pyyaml3/scanner.py \
  94. python_modules/pyyaml3/serializer.py \
  95. python_modules/pyyaml3/tokens.py \
  96. $(NULL)