Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Wim Lewis
nettle
Commits
728960b9
Commit
728960b9
authored
Apr 21, 2013
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes for make dist target.
parent
b58a69c8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
ChangeLog
ChangeLog
+5
-0
Makefile.in
Makefile.in
+3
-2
No files found.
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
Markdown
is supported
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