diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-10-19 11:40:56 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-01-20 11:53:58 +0100 |
commit | a888044525d9f03290cc1afe62dcfa3bec4bc0b9 (patch) | |
tree | 0e2736817cc6a0bb9a41a453bb2bde3eb04551ea /nor-utils | |
parent | c41808cdc3a2c3c8ca5f73707745f48aae49e17e (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 'nor-utils')
-rw-r--r-- | nor-utils/Makemodule.am | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nor-utils/Makemodule.am b/nor-utils/Makemodule.am index ef46cf8..441a72e 100644 --- a/nor-utils/Makemodule.am +++ b/nor-utils/Makemodule.am @@ -4,7 +4,4 @@ rfddump_LDADD = libmtd.a rfdformat_SOURCES = nor-utils/rfdformat.c rfdformat_LDADD = libmtd.a -NOR_BINS = \ - rfddump rfdformat - -sbin_PROGRAMS += $(NOR_BINS) +sbin_PROGRAMS += rfddump rfdformat |