diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 14:31:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 14:31:17 +0000 |
commit | 8020f71afd34d7696d7933659df2d763ab05542f (patch) | |
tree | 2fdf1b5447ffd8bdd61e702ca183e814afdcb4fc /collectors/Makefile.am | |
parent | Initial commit. (diff) | |
download | netdata-upstream.tar.xz netdata-upstream.zip |
Adding upstream version 1.37.1.upstream/1.37.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | collectors/Makefile.am | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/collectors/Makefile.am b/collectors/Makefile.am new file mode 100644 index 0000000..9f8bf52 --- /dev/null +++ b/collectors/Makefile.am @@ -0,0 +1,40 @@ +# SPDX-License-Identifier: GPL-3.0-or-later + +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in + +SUBDIRS = \ + plugins.d \ + apps.plugin \ + cgroups.plugin \ + charts.d.plugin \ + cups.plugin \ + diskspace.plugin \ + timex.plugin \ + fping.plugin \ + ioping.plugin \ + freebsd.plugin \ + freeipmi.plugin \ + idlejitter.plugin \ + macos.plugin \ + nfacct.plugin \ + xenstat.plugin \ + perf.plugin \ + proc.plugin \ + python.d.plugin \ + slabinfo.plugin \ + statsd.plugin \ + ebpf.plugin \ + tc.plugin \ + $(NULL) + +usercustompluginsconfigdir=$(configdir)/custom-plugins.d +usergoconfigdir=$(configdir)/go.d + +# Explicitly install directories to avoid permission issues due to umask +install-exec-local: + $(INSTALL) -d $(DESTDIR)$(usercustompluginsconfigdir) + $(INSTALL) -d $(DESTDIR)$(usergoconfigdir) + +dist_noinst_DATA = \ + README.md \ + $(NULL) |