Makefile.am 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #
  2. # Copyright (C) 2015 Alon Bar-Lev <alon.barlev@gmail.com>
  3. # SPDX-License-Identifier: GPL-3.0+
  4. #
  5. AUTOMAKE_OPTIONS=foreign dist-bzip2 dist-xz 1.10
  6. ACLOCAL_AMFLAGS = -I m4
  7. MAINTAINERCLEANFILES= \
  8. config.log config.status \
  9. $(srcdir)/Makefile.in \
  10. $(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
  11. $(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
  12. $(srcdir)/compile $(srcdir)/depcomp $(srcdir)/aclocal.m4 \
  13. $(srcdir)/config.guess $(srcdir)/config.sub \
  14. $(srcdir)/m4/ltsugar.m4 $(srcdir)/m4/libtool.m4 \
  15. $(srcdir)/m4/ltversion.m4 $(srcdir)/m4/lt~obsolete.m4 \
  16. $(srcdir)/m4/ltoptions.m4 \
  17. $(srcdir)/pkcs11-helper.spec $(srcdir)/config-w32-vc.h
  18. EXTRA_DIST = \
  19. .gitignore \
  20. .codacy.yml \
  21. .codeclimate.yml \
  22. .csslintrc \
  23. .eslintignore \
  24. .eslintrc \
  25. .travis \
  26. m4/jemalloc.m4 \
  27. m4/ax_c___atomic.m4 \
  28. m4/ax_check_enable_debug.m4 \
  29. m4/ax_c_mallinfo.m4 \
  30. m4/ax_gcc_func_attribute.m4 \
  31. m4/ax_check_compile_flag.m4 \
  32. m4/ax_c_statement_expressions.m4 \
  33. m4/ax_pthread.m4 \
  34. m4/ax_c_lto.m4 \
  35. m4/ax_c_mallopt.m4 \
  36. m4/tcmalloc.m4 \
  37. m4/ax_c__generic.m4 \
  38. autogen.sh \
  39. README.md \
  40. CONTRIBUTORS.md \
  41. LICENSE \
  42. LICENSES/Apache-2.0 \
  43. LICENSES/BSD-2-Clause \
  44. LICENSES/BSD-3-Clause \
  45. LICENSES/CC-BY-4.0 \
  46. LICENSES/CC0-1.0 \
  47. LICENSES/FSFAP \
  48. LICENSES/GPL-3.0 \
  49. LICENSES/LGPL-2.1 \
  50. LICENSES/LGPL-3.0 \
  51. LICENSES/MIT \
  52. LICENSES/OFL-1.1 \
  53. LICENSES/Python-2.0 \
  54. LICENSES/WTFPL \
  55. REDISTRIBUTED.md \
  56. autogen.sh \
  57. $(NULL)
  58. SUBDIRS = \
  59. charts.d \
  60. conf.d \
  61. diagrams \
  62. makeself \
  63. node.d \
  64. plugins.d \
  65. python.d \
  66. src \
  67. system \
  68. web \
  69. contrib \
  70. tests \
  71. $(NULL)
  72. dist_noinst_DATA= \
  73. cppcheck.sh \
  74. configs.signatures \
  75. Dockerfile \
  76. Dockerfile.alpine \
  77. Dockerfile.aarch64 \
  78. Dockerfile.armv7hf \
  79. netdata.cppcheck \
  80. netdata.spec \
  81. package.json \
  82. $(NULL)
  83. # until integrated within build
  84. # should be proper init.d/openrc/systemd usable
  85. dist_noinst_SCRIPTS= \
  86. coverity-scan.sh \
  87. docker-build.sh \
  88. kickstart.sh \
  89. kickstart-static64.sh \
  90. netdata-installer.sh \
  91. installer/functions.sh \
  92. $(NULL)