aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-10-19 11:40:56 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-01-20 11:53:58 +0100
commita888044525d9f03290cc1afe62dcfa3bec4bc0b9 (patch)
tree0e2736817cc6a0bb9a41a453bb2bde3eb04551ea /Makefile.am
parentc41808cdc3a2c3c8ca5f73707745f48aae49e17e (diff)
Cleanup: Automake: remove single use variables
Throughout the Automake files, there is a consistent pattern somewhat like this: FOO_BINS = .... sbin_PROGRAMS += $(FOO_BINS) This commit all such patterns whenever the variable is not used anywhere else and appends to the target directly. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index 8a169fb..ce8fc89 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -38,12 +38,7 @@ dist_man1_MANS =
dist_man8_MANS =
TESTS =
-EXTRA_DIST =
-
-GLOBAL_EXTRA = \
- COPYING
-
-EXTRA_DIST += $(GLOBAL_EXTRA)
+EXTRA_DIST = COPYING
include lib/Makemodule.am
include ubi-utils/Makemodule.am