1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-24 12:36:01 -07:00

Remove libsodium-randombytes.

This commit is contained in:
Frank Denis 2013-01-21 12:46:40 -08:00
parent 137ae007ae
commit 4c6e162c52
2 changed files with 5 additions and 9 deletions

View File

@ -1,12 +1,6 @@
lib_LTLIBRARIES = \
libsodium.la \
libsodium-randombytes.la
libsodium_randombytes_la_SOURCES = \
randombytes/randombytes.c \
randombytes/salsa20_random.c \
randombytes/salsa20_random.h
libsodium.la
libsodium_la_SOURCES = \
crypto_core/hsalsa20/ref2/core_hsalsa20.c \
@ -78,6 +72,9 @@ libsodium_la_SOURCES = \
crypto_sign/ed25519/ref/ge25519_ed25519.c \
crypto_sign/ed25519/ref/sc25519.h \
crypto_sign/ed25519/ref/sc25519_ed25519.c \
randombytes/randombytes.c \
randombytes/salsa20_random.c \
randombytes/salsa20_random.h \
version.c
EXTRA_DIST = \

View File

@ -78,8 +78,7 @@ check_PROGRAMS = $(TESTS_TARGETS)
TESTS = $(TESTS_TARGETS)
TESTS_LDADD = \
${top_builddir}/src/libsodium/libsodium.la \
${top_builddir}/src/libsodium/libsodium-randombytes.la
${top_builddir}/src/libsodium/libsodium.la
auth_SOURCE = cmptest.h auth.c
auth_LDADD = $(TESTS_LDADD)