Makefile.am 721 B

1234567891011121314151617181920212223242526272829303132333435
  1. # SPDX-License-Identifier: GPL-3.0-or-later
  2. AUTOMAKE_OPTIONS = subdir-objects
  3. MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
  4. SUBDIRS = \
  5. api \
  6. gui \
  7. server \
  8. $(NULL)
  9. CLEANFILES = \
  10. netdata-switch-dashboard.sh \
  11. $(NULL)
  12. usersslconfigdir=$(configdir)/ssl
  13. include $(top_srcdir)/build/subst.inc
  14. SUFFIXES = .in
  15. scriptsdir=${prefix}/libexec/netdata
  16. scripts_SCRIPTS = \
  17. netdata-switch-dashboard.sh \
  18. $(NULL)
  19. # Explicitly install directories to avoid permission issues due to umask
  20. install-exec-local:
  21. $(INSTALL) -d $(DESTDIR)$(usersslconfigdir)
  22. dist_noinst_DATA = \
  23. README.md \
  24. gui/confluence/README.md \
  25. gui/custom/README.md \
  26. netdata-switch-dashboard.sh.in \
  27. $(NULL)