FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
wolfssh/Makefile.am at master · wolfSSL/wolfssh · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
wolfSSL
/
wolfssh
Public
Notifications
You must be signed in to change notification settings
Fork
119
Star
489
Code
Issues
3
Pull requests
22
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
wolfssh
/
Makefile.am
Copy path
More file actions
More file actions
Latest commit
History
History
History
100 lines (84 loc) · 2.72 KB
Breadcrumbs
wolfssh
/
Makefile.am
Copy path
File metadata and controls
100 lines (84 loc) · 2.72 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#
includes append to these:
bin_PROGRAMS
=
noinst_HEADERS
=
lib_LTLIBRARIES
=
noinst_LTLIBRARIES
=
noinst_PROGRAMS
=
nobase_include_HEADERS
=
check_PROGRAMS
=
dist_noinst_SCRIPTS
=
CLEANFILES
=
#
includes additional rules from aminclude.am
@INC_AMINCLUDE@
DISTCLEANFILES
= aminclude.am wolfssh-config
exampledir
=
$(
docdir
)
/example
ACLOCAL_AMFLAGS
= -I m4
EXTRA_DIST
= LICENSING README.md ChangeLog.md
include
src/include.am
include
wolfssh/include.am
include
apps/include.am
include
examples/include.am
include
tests/include.am
include
keys/include.am
include
ide/include.am
include
scripts/include.am
TEST_EXTENSIONS
= .test
check_SCRIPTS
=
$(
dist_noinst_SCRIPTS
)
TESTS
=
$(
check_PROGRAMS
)
$(
check_SCRIPTS
)
test
: check
maintainer-clean-local
:
-rm Makefile.in
-rm aclocal.m4
-rm build-aux/compile
-rm build-aux/config.guess
-rm build-aux/config.sub
-rm build-aux/depcomp
-rm build-aux/install-sh
-rm build-aux/ltmain.sh
-rm build-aux/missing
-rm wolfssh-config
-rmdir build-aux
-rm configure
-rm config.log
-rm config.status
-rm config.in
-rm m4/libtool.m4
-rm m4/ltoptions.m4
-rm m4/ltsugar.m4
-rm m4/ltversion.m4
-rm m4/lt~obsolete.m4
find
.
-type f -name
'
*~
'
-exec rm -f
'
{}
'
\;
-rm -f @PACKAGE@-
*
.tar.gz
-rm -f @PACKAGE@-
*
.rpm
install-exec-local
: install-generic-config
install-generic-config
:
$(
mkinstalldirs
)
$(
DESTDIR
)$(
bindir
)
$(
INSTALL_SCRIPT
)
@GENERIC_CONFIG@
$(
DESTDIR
)$(
bindir
)
uninstall-local
:
-rm -f
$(
DESTDIR
)$(
bindir
)
/@GENERIC_CONFIG@
merge-clean
:
@find ./
|
$(
GREP
)
\.
gcda
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
gcno
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
gz
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
orig
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
rej
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
rpm
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
THIS
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
OTHER
|
xargs rm -f
@find ./
|
$(
GREP
)
\.
BASE
|
xargs rm -f
@find ./
|
$(
GREP
)
\~
$$
|
xargs rm -f
#
SBOM generation (CRA compliance). The recipe is shared across the wolfSSL
#
stack's autotools products in scripts/sbom.am; wolfSSH just declares what it
#
is (a library that links wolfSSL) and includes it. WOLFSSL_DIR must point to
#
a wolfssl source tree containing scripts/gen-sbom.
SBOM_PKGNAME
= wolfssh
SBOM_LICENSE_FILE
=
$(
srcdir
)
/LICENSING
SBOM_DEP_WOLFSSL
= yes
#
wolfSSH is GPLv3-or-later (per the per-file source headers: "either version 3
#
of the License, or (at your option) any later version") or commercial. Its
#
LICENSING summary uses the "GPLv3" abbreviation, which gen-sbom's
#
detect_license maps to GPL-3.0-only -- contradicting the headers -- so pin the
#
header-accurate SPDX id here. Commercial licensees can still override it
#
(e.g. LicenseRef-wolfSSL-Commercial).
SBOM_LICENSE_OVERRIDE
?= GPL-3.0-or-later
include
scripts/sbom.am
Back
|
FazBrowse Home
|
New Git URL