Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dmitry Baryshkov
nettle
Commits
728960b9
Commit
728960b9
authored
Apr 21, 2013
by
Niels Möller
Browse files
Fixes for make dist target.
parent
b58a69c8
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
728960b9
2013-04-21 Niels Möller <nisse@lysator.liu.se>
* Makefile.in (DISTFILES): Added mini-gmp.c and mini-gmp.h.
(distdir): Use find, for identifying assembly files to copy.
2013-04-18 Niels Möller <nisse@lysator.liu.se>
* configure.ac: Recognize cpu type "arm*", not just "armv7*'.
...
...
Makefile.in
View file @
728960b9
...
...
@@ -175,7 +175,7 @@ DISTFILES = $(SOURCES) $(HEADERS) getopt.h .bootstrap run-tests \
cast128_sboxes.h desinfo.h desCode.h
\
nettle-internal.h nettle-write.h prime-list.h
\
gmp-glue.h ecc-internal.h
\
asm.m4
\
mini-gmp.h mini-gmp.c
asm.m4
\
nettle.texinfo nettle.info nettle.html nettle.pdf sha-example.c
# Rules building static libraries
...
...
@@ -518,7 +518,8 @@ distdir: $(DISTFILES)
done
set
-e
;
for
d
in
sparc32 sparc64 x86 x86_64 arm arm/neon
;
do
\
mkdir
"
$(distdir)
/
$$
d"
;
\
cp
$(srcdir)
/
$$
d/
*
.asm
$(srcdir)
/
$$
d/
*
.m4
"
$(distdir)
/
$$
d"
;
\
find
"
$(srcdir)
/
$$
d"
-maxdepth
1
'('
-name
'*.asm'
-o
-name
'*.m4'
')'
\
-exec
cp
'{}'
"
$(distdir)
/
$$
d"
';'
;
\
done
set
-e
;
for
d
in
$(SUBDIRS)
;
do
\
sd
=
"
$(distdir)
/
$$
d"
;
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment