From d802f83e4af868236a4381112b82b7561c8d7f67 Mon Sep 17 00:00:00 2001 From: Costa Tsaousis Date: Tue, 16 Oct 2018 15:26:28 +0300 Subject: Fix make dist (#4401) * fix make dist; fixes #4400 * added daemon dir * fix edit-config in dist * removed config.h from file dependencies * do not attempt to detect stock files on vanilla installations * add missing files to dist * another fix for missing dist files * modular plugins are now self-configured for automake * updated lgtm * fix cncf urls --- Makefile.am | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index c80aa0f5a0..a4865d38c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,8 +24,9 @@ EXTRA_DIST = \ .eslintrc \ .lgtm.yml \ .travis \ - build/build.sh - build/Dockerfile + .github/CODEOWNERS \ + build/build.sh \ + build/Dockerfile \ build/m4/jemalloc.m4 \ build/m4/ax_c___atomic.m4 \ build/m4/ax_check_enable_debug.m4 \ @@ -40,6 +41,7 @@ EXTRA_DIST = \ build/m4/ax_c__generic.m4 \ README.md \ CONTRIBUTORS.md \ + CODE_OF_CONDUCT.md \ LICENSE \ REDISTRIBUTED.md \ $(NULL) @@ -77,6 +79,7 @@ dist_noinst_SCRIPTS= \ SUBDIRS += \ backends \ collectors \ + daemon \ database \ health \ libnetdata \ @@ -405,7 +408,7 @@ NETDATA_COMMON_LIBS = \ sbin_PROGRAMS += netdata -netdata_SOURCES = ../config.h $(NETDATA_FILES) +netdata_SOURCES = $(NETDATA_FILES) netdata_LDADD = \ $(NETDATA_COMMON_LIBS) \ $(OPTIONAL_NFACCT_LIBS) \ @@ -413,7 +416,7 @@ netdata_LDADD = \ if ENABLE_PLUGIN_APPS plugins_PROGRAMS += apps.plugin - apps_plugin_SOURCES = ../config.h $(APPS_PLUGIN_FILES) + apps_plugin_SOURCES = $(APPS_PLUGIN_FILES) apps_plugin_LDADD = \ $(NETDATA_COMMON_LIBS) \ $(OPTIONAL_LIBCAP_LIBS) \ @@ -422,7 +425,7 @@ endif if ENABLE_PLUGIN_CGROUP_NETWORK plugins_PROGRAMS += cgroup-network - cgroup_network_SOURCES = ../config.h $(CGROUP_NETWORK_FILES) + cgroup_network_SOURCES = $(CGROUP_NETWORK_FILES) cgroup_network_LDADD = \ $(NETDATA_COMMON_LIBS) \ $(NULL) @@ -430,7 +433,7 @@ endif if ENABLE_PLUGIN_FREEIPMI plugins_PROGRAMS += freeipmi.plugin - freeipmi_plugin_SOURCES = ../config.h $(FREEIPMI_PLUGIN_FILES) + freeipmi_plugin_SOURCES = $(FREEIPMI_PLUGIN_FILES) freeipmi_plugin_LDADD = \ $(NETDATA_COMMON_LIBS) \ $(OPTIONAL_IPMIMONITORING_LIBS) \ -- cgit v1.2.3