Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nettle
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Brian Smith
nettle
Commits
0f46bfe9
Commit
0f46bfe9
authored
Oct 27, 2012
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed make dist, testsuite/testutils.c was lost.
parent
c01af48b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
ChangeLog
ChangeLog
+6
-0
testsuite/Makefile.in
testsuite/Makefile.in
+7
-7
No files found.
ChangeLog
View file @
0f46bfe9
2012-10-27 Niels Möller <nisse@lysator.liu.se>
* testsuite/Makefile.in (TS_SOURCES, CXX_SOURCES): Include sources
unconditionally.
(TS_CXX): Moved @IF_CXX@ conditional here.
(DISTFILES): Use $(SOURCES), which now includes all C source
files. testutils.c was lost in a the 2012-09-20 change.
* x86_64/salsa20-crypt.asm: Include x86_64/salsa20.m4.
Make all exits go via .Lend and W64_EXIT.
...
...
testsuite/Makefile.in
View file @
0f46bfe9
...
...
@@ -34,25 +34,23 @@ TS_HOGWEED_SOURCES = sexp-test.c sexp-format-test.c \
rsa-test.c rsa-encrypt-test.c rsa-keygen-test.c
\
dsa-test.c dsa-keygen-test.c
TS_SOURCES
=
$(TS_NETTLE_SOURCES)
@IF_HOGWEED@
$(TS_HOGWEED_SOURCES)
CXX_SOURCES
=
@IF_CXX@
cxx-test.cxx
TS_SOURCES
=
$(TS_NETTLE_SOURCES)
$(TS_HOGWEED_SOURCES)
CXX_SOURCES
=
cxx-test.cxx
TS_NETTLE
=
$
(
TS_NETTLE_SOURCES:.c
=
$(EXEEXT)
)
TS_HOGWEED
=
$
(
TS_HOGWEED_SOURCES:.c
=
$(EXEEXT)
)
TS_C
=
$(TS_NETTLE)
@IF_HOGWEED@
$(TS_HOGWEED)
TS_CXX
=
$
(
CXX_SOURCES:.cxx
=
$(EXEEXT)
)
TS_CXX
=
@IF_CXX@
$
(
CXX_SOURCES:.cxx
=
$(EXEEXT)
)
TARGETS
=
$(TS_C)
$(TS_CXX)
TS_SH
=
sexp-conv-test pkcs1-conv-test symbols-test
TS_ALL
=
$(TARGETS)
$(TS_SH)
EXTRA_SOURCES
=
sha1-huge-test.c
EXTRA_TARGETS
=
$
(
EXTRA_SOURCES:.c
=
$(EXEEXT)
)
#
C source files to be built
#
Includes all C source files, regardless of configuration
SOURCES
=
$(TS_SOURCES)
$(EXTRA_SOURCES)
testutils.c
# Includes all C source files, regardless of configuration
DISTFILES
=
$(TS_NETTLE_SOURCES)
$(TS_HOGWEED_SOURCES)
\
$(EXTRA_SOURCES)
cxx-test.cxx Makefile.in .test-rules.make
\
DISTFILES
=
$(SOURCES)
$(CXX_SOURCES)
Makefile.in .test-rules.make
\
$(TS_SH)
setup-env teardown-env
\
gold-bug.txt testutils.h
...
...
@@ -127,5 +125,7 @@ distclean: clean
tags
:
etags
-o
$(srcdir)
/TAGS
--include
$(top_srcdir)
$(srcdir)
/
*
.c
$(srcdir)
/
*
.h
# Includes dependency files for everything, including objects which
# the current configuration will not build.
DEP_FILES
=
$
(
SOURCES:.c
=
.
$(OBJEXT)
.d
)
$
(
CXX_SOURCES:.cxx
=
.
$(OBJEXT)
.d
)
@DEP_INCLUDE@
$(DEP_FILES)
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