Skip to content

Commit 6aa0dd2

Browse files
committed
Automake Update
1. Remove redundant empty variable initializations. 2. Regroup some value appends into a single assignment.
1 parent e238eab commit 6aa0dd2

1 file changed

Lines changed: 6 additions & 27 deletions

File tree

Makefile.am

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,21 @@
11
# includes append to these:
2-
SUFFIXES =
3-
TESTS =
4-
CLEANFILES =
5-
DISTCLEANFILES =
62
bin_PROGRAMS =
73
noinst_HEADERS =
84
lib_LTLIBRARIES =
9-
man_MANS =
10-
noinst_LTLIBRARIES =
115
noinst_PROGRAMS =
12-
include_HEADERS =
136
nobase_include_HEADERS =
147
check_PROGRAMS =
15-
EXTRA_HEADERS =
16-
BUILT_SOURCES=
17-
EXTRA_DIST=
18-
dist_doc_DATA=
19-
dist_noinst_SCRIPTS=
20-
check_SCRIPTS=
21-
8+
dist_noinst_SCRIPTS =
229

2310
#includes additional rules from aminclude.am
2411
@INC_AMINCLUDE@
25-
DISTCLEANFILES+= aminclude.am
12+
DISTCLEANFILES = aminclude.am wolfssh-config
2613

2714
exampledir = $(docdir)/example
28-
dist_example_DATA=
2915

30-
ACLOCAL_AMFLAGS= -I m4
16+
ACLOCAL_AMFLAGS = -I m4
3117

32-
EXTRA_DIST+= LICENSING README.md ChangeLog.md
18+
EXTRA_DIST = LICENSING README.md ChangeLog.md
3319

3420
include src/include.am
3521
include wolfssh/include.am
@@ -40,17 +26,12 @@ include keys/include.am
4026
include ide/include.am
4127
include scripts/include.am
4228

43-
4429
TEST_EXTENSIONS = .test
45-
TESTS += $(check_PROGRAMS)
46-
47-
check_SCRIPTS+= $(dist_noinst_SCRIPTS)
48-
TESTS += $(check_SCRIPTS)
30+
check_SCRIPTS = $(dist_noinst_SCRIPTS)
31+
TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
4932

5033
test: check
5134

52-
DISTCLEANFILES+= wolfssh-config
53-
5435

5536
maintainer-clean-local:
5637
-rm Makefile.in
@@ -97,5 +78,3 @@ merge-clean:
9778
@find ./ | $(GREP) \.OTHER | xargs rm -f
9879
@find ./ | $(GREP) \.BASE | xargs rm -f
9980
@find ./ | $(GREP) \~$$ | xargs rm -f
100-
101-

0 commit comments

Comments
 (0)