Move sodium-specific files to a dedicated directory

This commit is contained in:
Frank Denis 2013-04-18 15:24:07 +02:00
parent 98a58ff3f9
commit 8e7bb5d0ce
5 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ AC_PREREQ([2.61])
AC_INIT([libsodium],[0.4],[https://github.com/jedisct1/libsodium]) AC_INIT([libsodium],[0.4],[https://github.com/jedisct1/libsodium])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([libltdl/config]) AC_CONFIG_AUX_DIR([libltdl/config])
AC_CONFIG_SRCDIR([src/libsodium/version.c]) AC_CONFIG_SRCDIR([src/libsodium/sodium/version.c])
AC_CANONICAL_HOST AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar]) AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

View File

@ -3,7 +3,6 @@ lib_LTLIBRARIES = \
libsodium.la libsodium.la
libsodium_la_SOURCES = \ libsodium_la_SOURCES = \
core.c \
crypto_core/hsalsa20/ref2/core_hsalsa20.c \ crypto_core/hsalsa20/ref2/core_hsalsa20.c \
crypto_core/hsalsa20/ref2/crypto_core.h \ crypto_core/hsalsa20/ref2/crypto_core.h \
crypto_core/salsa20/ref/core_salsa20.c \ crypto_core/salsa20/ref/core_salsa20.c \
@ -133,8 +132,9 @@ libsodium_la_SOURCES = \
randombytes/randombytes.c \ randombytes/randombytes.c \
randombytes/salsa20/randombytes_salsa20_random.c \ randombytes/salsa20/randombytes_salsa20_random.c \
randombytes/sysrandom/randombytes_sysrandom.c \ randombytes/sysrandom/randombytes_sysrandom.c \
utils.c \ sodium/core.c \
version.c sodium/utils.c \
sodium/version.c
libsodium_la_LDFLAGS = \ libsodium_la_LDFLAGS = \
$(AM_LDFLAGS) \ $(AM_LDFLAGS) \