rbnacl-libsodium 0.5.0 → 0.5.0.1.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -2
- data/ext/rbnacl/extconf.rb +0 -1
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/vendor/libsodium/Makefile.in +878 -0
- data/vendor/libsodium/aclocal.m4 +1214 -0
- data/vendor/libsodium/autom4te.cache/output.0 +17434 -0
- data/vendor/libsodium/autom4te.cache/output.1 +17434 -0
- data/vendor/libsodium/autom4te.cache/output.2 +17434 -0
- data/vendor/libsodium/autom4te.cache/requests +554 -0
- data/vendor/libsodium/autom4te.cache/traces.0 +2956 -0
- data/vendor/libsodium/autom4te.cache/traces.1 +829 -0
- data/vendor/libsodium/autom4te.cache/traces.2 +2956 -0
- data/vendor/libsodium/compile +347 -0
- data/vendor/libsodium/config.guess +1568 -0
- data/vendor/libsodium/config.sub +1793 -0
- data/vendor/libsodium/configure +17434 -0
- data/vendor/libsodium/depcomp +791 -0
- data/vendor/libsodium/dist-build/Makefile.in +453 -0
- data/vendor/libsodium/install-sh +527 -0
- data/vendor/libsodium/ltmain.sh +9655 -0
- data/vendor/libsodium/m4/libtool.m4 +7982 -0
- data/vendor/libsodium/m4/ltoptions.m4 +384 -0
- data/vendor/libsodium/m4/ltsugar.m4 +123 -0
- data/vendor/libsodium/m4/ltversion.m4 +23 -0
- data/vendor/libsodium/m4/lt~obsolete.m4 +98 -0
- data/vendor/libsodium/missing +215 -0
- data/vendor/libsodium/msvc-scripts/Makefile.in +448 -0
- data/vendor/libsodium/src/Makefile.in +626 -0
- data/vendor/libsodium/src/libsodium/Makefile.in +3725 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.in +656 -0
- data/vendor/libsodium/test-driver +139 -0
- data/vendor/libsodium/test/Makefile.in +629 -0
- data/vendor/libsodium/test/default/Makefile.in +2047 -0
- metadata +35 -4
@@ -0,0 +1,656 @@
|
|
1
|
+
# Makefile.in generated by automake 1.14.1 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
5
|
+
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
@SET_MAKE@
|
16
|
+
|
17
|
+
VPATH = @srcdir@
|
18
|
+
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
19
|
+
am__make_running_with_option = \
|
20
|
+
case $${target_option-} in \
|
21
|
+
?) ;; \
|
22
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
23
|
+
"target option '$${target_option-}' specified" >&2; \
|
24
|
+
exit 1;; \
|
25
|
+
esac; \
|
26
|
+
has_opt=no; \
|
27
|
+
sane_makeflags=$$MAKEFLAGS; \
|
28
|
+
if $(am__is_gnu_make); then \
|
29
|
+
sane_makeflags=$$MFLAGS; \
|
30
|
+
else \
|
31
|
+
case $$MAKEFLAGS in \
|
32
|
+
*\\[\ \ ]*) \
|
33
|
+
bs=\\; \
|
34
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
35
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
36
|
+
esac; \
|
37
|
+
fi; \
|
38
|
+
skip_next=no; \
|
39
|
+
strip_trailopt () \
|
40
|
+
{ \
|
41
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
42
|
+
}; \
|
43
|
+
for flg in $$sane_makeflags; do \
|
44
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
45
|
+
case $$flg in \
|
46
|
+
*=*|--*) continue;; \
|
47
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
48
|
+
-*I?*) strip_trailopt 'I';; \
|
49
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
50
|
+
-*O?*) strip_trailopt 'O';; \
|
51
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
52
|
+
-*l?*) strip_trailopt 'l';; \
|
53
|
+
-[dEDm]) skip_next=yes;; \
|
54
|
+
-[JT]) skip_next=yes;; \
|
55
|
+
esac; \
|
56
|
+
case $$flg in \
|
57
|
+
*$$target_option*) has_opt=yes; break;; \
|
58
|
+
esac; \
|
59
|
+
done; \
|
60
|
+
test $$has_opt = yes
|
61
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
62
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
63
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
64
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
65
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
66
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
67
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
68
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
69
|
+
install_sh_PROGRAM = $(install_sh) -c
|
70
|
+
install_sh_SCRIPT = $(install_sh) -c
|
71
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
72
|
+
transform = $(program_transform_name)
|
73
|
+
NORMAL_INSTALL = :
|
74
|
+
PRE_INSTALL = :
|
75
|
+
POST_INSTALL = :
|
76
|
+
NORMAL_UNINSTALL = :
|
77
|
+
PRE_UNINSTALL = :
|
78
|
+
POST_UNINSTALL = :
|
79
|
+
build_triplet = @build@
|
80
|
+
host_triplet = @host@
|
81
|
+
subdir = src/libsodium/include
|
82
|
+
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
83
|
+
$(nobase_include_HEADERS)
|
84
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
85
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
86
|
+
$(top_srcdir)/m4/ax_check_link_flag.m4 \
|
87
|
+
$(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
|
88
|
+
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
89
|
+
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
90
|
+
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/configure.ac
|
91
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
92
|
+
$(ACLOCAL_M4)
|
93
|
+
mkinstalldirs = $(install_sh) -d
|
94
|
+
CONFIG_CLEAN_FILES =
|
95
|
+
CONFIG_CLEAN_VPATH_FILES =
|
96
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
97
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
98
|
+
am__v_P_0 = false
|
99
|
+
am__v_P_1 = :
|
100
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
101
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
102
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
103
|
+
am__v_GEN_1 =
|
104
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
105
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
106
|
+
am__v_at_0 = @
|
107
|
+
am__v_at_1 =
|
108
|
+
SOURCES =
|
109
|
+
DIST_SOURCES =
|
110
|
+
am__can_run_installinfo = \
|
111
|
+
case $$AM_UPDATE_INFO_DIR in \
|
112
|
+
n|no|NO) false;; \
|
113
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
114
|
+
esac
|
115
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
116
|
+
am__vpath_adj = case $$p in \
|
117
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
118
|
+
*) f=$$p;; \
|
119
|
+
esac;
|
120
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
121
|
+
am__install_max = 40
|
122
|
+
am__nobase_strip_setup = \
|
123
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
124
|
+
am__nobase_strip = \
|
125
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
126
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
127
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
128
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
129
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
130
|
+
if (++n[$$2] == $(am__install_max)) \
|
131
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
132
|
+
END { for (dir in files) print dir, files[dir] }'
|
133
|
+
am__base_list = \
|
134
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
135
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
136
|
+
am__uninstall_files_from_dir = { \
|
137
|
+
test -z "$$files" \
|
138
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
139
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
140
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
141
|
+
}
|
142
|
+
am__installdirs = "$(DESTDIR)$(includedir)" "$(DESTDIR)$(includedir)"
|
143
|
+
HEADERS = $(nobase_include_HEADERS) $(nobase_nodist_include_HEADERS)
|
144
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
145
|
+
# Read a list of newline-separated strings from the standard input,
|
146
|
+
# and print each of them once, without duplicates. Input order is
|
147
|
+
# *not* preserved.
|
148
|
+
am__uniquify_input = $(AWK) '\
|
149
|
+
BEGIN { nonempty = 0; } \
|
150
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
151
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
152
|
+
'
|
153
|
+
# Make sure the list of sources is unique. This is necessary because,
|
154
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
155
|
+
# for different programs/libraries.
|
156
|
+
am__define_uniq_tagged_files = \
|
157
|
+
list='$(am__tagged_files)'; \
|
158
|
+
unique=`for i in $$list; do \
|
159
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
160
|
+
done | $(am__uniquify_input)`
|
161
|
+
ETAGS = etags
|
162
|
+
CTAGS = ctags
|
163
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
164
|
+
ACLOCAL = @ACLOCAL@
|
165
|
+
AMTAR = @AMTAR@
|
166
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
167
|
+
AR = @AR@
|
168
|
+
AS = @AS@
|
169
|
+
AUTOCONF = @AUTOCONF@
|
170
|
+
AUTOHEADER = @AUTOHEADER@
|
171
|
+
AUTOMAKE = @AUTOMAKE@
|
172
|
+
AWK = @AWK@
|
173
|
+
CC = @CC@
|
174
|
+
CCAS = @CCAS@
|
175
|
+
CCASDEPMODE = @CCASDEPMODE@
|
176
|
+
CCASFLAGS = @CCASFLAGS@
|
177
|
+
CCDEPMODE = @CCDEPMODE@
|
178
|
+
CFLAGS = @CFLAGS@
|
179
|
+
CPP = @CPP@
|
180
|
+
CPPFLAGS = @CPPFLAGS@
|
181
|
+
CWFLAGS = @CWFLAGS@
|
182
|
+
CYGPATH_W = @CYGPATH_W@
|
183
|
+
DEFS = @DEFS@
|
184
|
+
DEPDIR = @DEPDIR@
|
185
|
+
DLLTOOL = @DLLTOOL@
|
186
|
+
DLL_VERSION = @DLL_VERSION@
|
187
|
+
DSYMUTIL = @DSYMUTIL@
|
188
|
+
DUMPBIN = @DUMPBIN@
|
189
|
+
ECHO_C = @ECHO_C@
|
190
|
+
ECHO_N = @ECHO_N@
|
191
|
+
ECHO_T = @ECHO_T@
|
192
|
+
EGREP = @EGREP@
|
193
|
+
EXEEXT = @EXEEXT@
|
194
|
+
FGREP = @FGREP@
|
195
|
+
GREP = @GREP@
|
196
|
+
HAVE_AMD64_ASM_V = @HAVE_AMD64_ASM_V@
|
197
|
+
HAVE_CPUID_V = @HAVE_CPUID_V@
|
198
|
+
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
|
199
|
+
HAVE_TI_MODE_V = @HAVE_TI_MODE_V@
|
200
|
+
INSTALL = @INSTALL@
|
201
|
+
INSTALL_DATA = @INSTALL_DATA@
|
202
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
203
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
204
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
205
|
+
ISODATE = @ISODATE@
|
206
|
+
LD = @LD@
|
207
|
+
LDFLAGS = @LDFLAGS@
|
208
|
+
LIBOBJS = @LIBOBJS@
|
209
|
+
LIBS = @LIBS@
|
210
|
+
LIBTOOL = @LIBTOOL@
|
211
|
+
LIBTOOL_DEPS = @LIBTOOL_DEPS@
|
212
|
+
LIBTOOL_EXTRA_FLAGS = @LIBTOOL_EXTRA_FLAGS@
|
213
|
+
LIPO = @LIPO@
|
214
|
+
LN_S = @LN_S@
|
215
|
+
LTLIBOBJS = @LTLIBOBJS@
|
216
|
+
MAINT = @MAINT@
|
217
|
+
MAKEINFO = @MAKEINFO@
|
218
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
219
|
+
MKDIR_P = @MKDIR_P@
|
220
|
+
NM = @NM@
|
221
|
+
NMEDIT = @NMEDIT@
|
222
|
+
OBJDUMP = @OBJDUMP@
|
223
|
+
OBJEXT = @OBJEXT@
|
224
|
+
OTOOL = @OTOOL@
|
225
|
+
OTOOL64 = @OTOOL64@
|
226
|
+
PACKAGE = @PACKAGE@
|
227
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
228
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
229
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
230
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
231
|
+
PACKAGE_URL = @PACKAGE_URL@
|
232
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
233
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
234
|
+
PKG_CONFIG = @PKG_CONFIG@
|
235
|
+
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
236
|
+
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
|
237
|
+
RANLIB = @RANLIB@
|
238
|
+
SAFECODE_HOME = @SAFECODE_HOME@
|
239
|
+
SED = @SED@
|
240
|
+
SET_MAKE = @SET_MAKE@
|
241
|
+
SHELL = @SHELL@
|
242
|
+
SODIUM_LIBRARY_VERSION = @SODIUM_LIBRARY_VERSION@
|
243
|
+
SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
|
244
|
+
SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
|
245
|
+
STRIP = @STRIP@
|
246
|
+
VERSION = @VERSION@
|
247
|
+
abs_builddir = @abs_builddir@
|
248
|
+
abs_srcdir = @abs_srcdir@
|
249
|
+
abs_top_builddir = @abs_top_builddir@
|
250
|
+
abs_top_srcdir = @abs_top_srcdir@
|
251
|
+
ac_ct_AR = @ac_ct_AR@
|
252
|
+
ac_ct_CC = @ac_ct_CC@
|
253
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
254
|
+
am__include = @am__include@
|
255
|
+
am__leading_dot = @am__leading_dot@
|
256
|
+
am__quote = @am__quote@
|
257
|
+
am__tar = @am__tar@
|
258
|
+
am__untar = @am__untar@
|
259
|
+
bindir = @bindir@
|
260
|
+
build = @build@
|
261
|
+
build_alias = @build_alias@
|
262
|
+
build_cpu = @build_cpu@
|
263
|
+
build_os = @build_os@
|
264
|
+
build_vendor = @build_vendor@
|
265
|
+
builddir = @builddir@
|
266
|
+
datadir = @datadir@
|
267
|
+
datarootdir = @datarootdir@
|
268
|
+
docdir = @docdir@
|
269
|
+
dvidir = @dvidir@
|
270
|
+
exec_prefix = @exec_prefix@
|
271
|
+
host = @host@
|
272
|
+
host_alias = @host_alias@
|
273
|
+
host_cpu = @host_cpu@
|
274
|
+
host_os = @host_os@
|
275
|
+
host_vendor = @host_vendor@
|
276
|
+
htmldir = @htmldir@
|
277
|
+
includedir = @includedir@
|
278
|
+
infodir = @infodir@
|
279
|
+
install_sh = @install_sh@
|
280
|
+
libdir = @libdir@
|
281
|
+
libexecdir = @libexecdir@
|
282
|
+
localedir = @localedir@
|
283
|
+
localstatedir = @localstatedir@
|
284
|
+
mandir = @mandir@
|
285
|
+
mkdir_p = @mkdir_p@
|
286
|
+
oldincludedir = @oldincludedir@
|
287
|
+
pdfdir = @pdfdir@
|
288
|
+
prefix = @prefix@
|
289
|
+
program_transform_name = @program_transform_name@
|
290
|
+
psdir = @psdir@
|
291
|
+
sbindir = @sbindir@
|
292
|
+
sharedstatedir = @sharedstatedir@
|
293
|
+
srcdir = @srcdir@
|
294
|
+
sysconfdir = @sysconfdir@
|
295
|
+
target_alias = @target_alias@
|
296
|
+
top_build_prefix = @top_build_prefix@
|
297
|
+
top_builddir = @top_builddir@
|
298
|
+
top_srcdir = @top_srcdir@
|
299
|
+
SODIUM_EXPORT = \
|
300
|
+
sodium.h \
|
301
|
+
sodium/core.h \
|
302
|
+
sodium/crypto_auth.h \
|
303
|
+
sodium/crypto_auth_hmacsha256.h \
|
304
|
+
sodium/crypto_auth_hmacsha512.h \
|
305
|
+
sodium/crypto_auth_hmacsha512256.h \
|
306
|
+
sodium/crypto_box.h \
|
307
|
+
sodium/crypto_box_curve25519xsalsa20poly1305.h \
|
308
|
+
sodium/crypto_core_hsalsa20.h \
|
309
|
+
sodium/crypto_core_salsa20.h \
|
310
|
+
sodium/crypto_core_salsa2012.h \
|
311
|
+
sodium/crypto_core_salsa208.h \
|
312
|
+
sodium/crypto_generichash.h \
|
313
|
+
sodium/crypto_generichash_blake2b.h \
|
314
|
+
sodium/crypto_hash.h \
|
315
|
+
sodium/crypto_hash_sha256.h \
|
316
|
+
sodium/crypto_hash_sha512.h \
|
317
|
+
sodium/crypto_onetimeauth.h \
|
318
|
+
sodium/crypto_onetimeauth_poly1305.h \
|
319
|
+
sodium/crypto_onetimeauth_poly1305_donna.h \
|
320
|
+
sodium/crypto_pwhash_scryptxsalsa208sha256.h \
|
321
|
+
sodium/crypto_scalarmult.h \
|
322
|
+
sodium/crypto_scalarmult_curve25519.h \
|
323
|
+
sodium/crypto_secretbox.h \
|
324
|
+
sodium/crypto_secretbox_xsalsa20poly1305.h \
|
325
|
+
sodium/crypto_shorthash.h \
|
326
|
+
sodium/crypto_shorthash_siphash24.h \
|
327
|
+
sodium/crypto_sign.h \
|
328
|
+
sodium/crypto_sign_ed25519.h \
|
329
|
+
sodium/crypto_sign_edwards25519sha512batch.h \
|
330
|
+
sodium/crypto_stream.h \
|
331
|
+
sodium/crypto_stream_aes128ctr.h \
|
332
|
+
sodium/crypto_stream_aes256estream.h \
|
333
|
+
sodium/crypto_stream_salsa20.h \
|
334
|
+
sodium/crypto_stream_salsa2012.h \
|
335
|
+
sodium/crypto_stream_salsa208.h \
|
336
|
+
sodium/crypto_stream_xsalsa20.h \
|
337
|
+
sodium/crypto_int32.h \
|
338
|
+
sodium/crypto_int64.h \
|
339
|
+
sodium/crypto_uint16.h \
|
340
|
+
sodium/crypto_uint32.h \
|
341
|
+
sodium/crypto_uint64.h \
|
342
|
+
sodium/crypto_uint8.h \
|
343
|
+
sodium/crypto_verify_16.h \
|
344
|
+
sodium/crypto_verify_32.h \
|
345
|
+
sodium/crypto_verify_64.h \
|
346
|
+
sodium/export.h \
|
347
|
+
sodium/randombytes.h \
|
348
|
+
sodium/randombytes_salsa20_random.h \
|
349
|
+
sodium/randombytes_sysrandom.h \
|
350
|
+
sodium/runtime.h \
|
351
|
+
sodium/utils.h
|
352
|
+
|
353
|
+
EXTRA_SRC = $(SODIUM_EXPORT) \
|
354
|
+
sodium/version.h.in
|
355
|
+
|
356
|
+
nobase_include_HEADERS = $(SODIUM_EXPORT)
|
357
|
+
nobase_nodist_include_HEADERS = \
|
358
|
+
sodium/version.h
|
359
|
+
|
360
|
+
all: all-am
|
361
|
+
|
362
|
+
.SUFFIXES:
|
363
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
364
|
+
@for dep in $?; do \
|
365
|
+
case '$(am__configure_deps)' in \
|
366
|
+
*$$dep*) \
|
367
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
368
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
369
|
+
exit 1;; \
|
370
|
+
esac; \
|
371
|
+
done; \
|
372
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/libsodium/include/Makefile'; \
|
373
|
+
$(am__cd) $(top_srcdir) && \
|
374
|
+
$(AUTOMAKE) --foreign src/libsodium/include/Makefile
|
375
|
+
.PRECIOUS: Makefile
|
376
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
377
|
+
@case '$?' in \
|
378
|
+
*config.status*) \
|
379
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
380
|
+
*) \
|
381
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
382
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
383
|
+
esac;
|
384
|
+
|
385
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
386
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
387
|
+
|
388
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
389
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
390
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
391
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
392
|
+
$(am__aclocal_m4_deps):
|
393
|
+
|
394
|
+
mostlyclean-libtool:
|
395
|
+
-rm -f *.lo
|
396
|
+
|
397
|
+
clean-libtool:
|
398
|
+
-rm -rf .libs _libs
|
399
|
+
install-nobase_includeHEADERS: $(nobase_include_HEADERS)
|
400
|
+
@$(NORMAL_INSTALL)
|
401
|
+
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
402
|
+
if test -n "$$list"; then \
|
403
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
|
404
|
+
$(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
|
405
|
+
fi; \
|
406
|
+
$(am__nobase_list) | while read dir files; do \
|
407
|
+
xfiles=; for file in $$files; do \
|
408
|
+
if test -f "$$file"; then xfiles="$$xfiles $$file"; \
|
409
|
+
else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
|
410
|
+
test -z "$$xfiles" || { \
|
411
|
+
test "x$$dir" = x. || { \
|
412
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
413
|
+
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
414
|
+
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
415
|
+
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
416
|
+
done
|
417
|
+
|
418
|
+
uninstall-nobase_includeHEADERS:
|
419
|
+
@$(NORMAL_UNINSTALL)
|
420
|
+
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
421
|
+
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
422
|
+
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
|
423
|
+
install-nobase_nodist_includeHEADERS: $(nobase_nodist_include_HEADERS)
|
424
|
+
@$(NORMAL_INSTALL)
|
425
|
+
@list='$(nobase_nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
426
|
+
if test -n "$$list"; then \
|
427
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
|
428
|
+
$(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
|
429
|
+
fi; \
|
430
|
+
$(am__nobase_list) | while read dir files; do \
|
431
|
+
xfiles=; for file in $$files; do \
|
432
|
+
if test -f "$$file"; then xfiles="$$xfiles $$file"; \
|
433
|
+
else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
|
434
|
+
test -z "$$xfiles" || { \
|
435
|
+
test "x$$dir" = x. || { \
|
436
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
437
|
+
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
438
|
+
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
439
|
+
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
440
|
+
done
|
441
|
+
|
442
|
+
uninstall-nobase_nodist_includeHEADERS:
|
443
|
+
@$(NORMAL_UNINSTALL)
|
444
|
+
@list='$(nobase_nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
445
|
+
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
446
|
+
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
|
447
|
+
|
448
|
+
ID: $(am__tagged_files)
|
449
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
450
|
+
tags: tags-am
|
451
|
+
TAGS: tags
|
452
|
+
|
453
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
454
|
+
set x; \
|
455
|
+
here=`pwd`; \
|
456
|
+
$(am__define_uniq_tagged_files); \
|
457
|
+
shift; \
|
458
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
459
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
460
|
+
if test $$# -gt 0; then \
|
461
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
462
|
+
"$$@" $$unique; \
|
463
|
+
else \
|
464
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
465
|
+
$$unique; \
|
466
|
+
fi; \
|
467
|
+
fi
|
468
|
+
ctags: ctags-am
|
469
|
+
|
470
|
+
CTAGS: ctags
|
471
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
472
|
+
$(am__define_uniq_tagged_files); \
|
473
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
474
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
475
|
+
$$unique
|
476
|
+
|
477
|
+
GTAGS:
|
478
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
479
|
+
&& $(am__cd) $(top_srcdir) \
|
480
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
481
|
+
cscopelist: cscopelist-am
|
482
|
+
|
483
|
+
cscopelist-am: $(am__tagged_files)
|
484
|
+
list='$(am__tagged_files)'; \
|
485
|
+
case "$(srcdir)" in \
|
486
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
487
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
488
|
+
esac; \
|
489
|
+
for i in $$list; do \
|
490
|
+
if test -f "$$i"; then \
|
491
|
+
echo "$(subdir)/$$i"; \
|
492
|
+
else \
|
493
|
+
echo "$$sdir/$$i"; \
|
494
|
+
fi; \
|
495
|
+
done >> $(top_builddir)/cscope.files
|
496
|
+
|
497
|
+
distclean-tags:
|
498
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
499
|
+
|
500
|
+
distdir: $(DISTFILES)
|
501
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
502
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
503
|
+
list='$(DISTFILES)'; \
|
504
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
505
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
506
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
507
|
+
case $$dist_files in \
|
508
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
509
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
510
|
+
sort -u` ;; \
|
511
|
+
esac; \
|
512
|
+
for file in $$dist_files; do \
|
513
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
514
|
+
if test -d $$d/$$file; then \
|
515
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
516
|
+
if test -d "$(distdir)/$$file"; then \
|
517
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
518
|
+
fi; \
|
519
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
520
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
521
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
522
|
+
fi; \
|
523
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
524
|
+
else \
|
525
|
+
test -f "$(distdir)/$$file" \
|
526
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
527
|
+
|| exit 1; \
|
528
|
+
fi; \
|
529
|
+
done
|
530
|
+
check-am: all-am
|
531
|
+
check: check-am
|
532
|
+
all-am: Makefile $(HEADERS)
|
533
|
+
installdirs:
|
534
|
+
for dir in "$(DESTDIR)$(includedir)" "$(DESTDIR)$(includedir)"; do \
|
535
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
536
|
+
done
|
537
|
+
install: install-am
|
538
|
+
install-exec: install-exec-am
|
539
|
+
install-data: install-data-am
|
540
|
+
uninstall: uninstall-am
|
541
|
+
|
542
|
+
install-am: all-am
|
543
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
544
|
+
|
545
|
+
installcheck: installcheck-am
|
546
|
+
install-strip:
|
547
|
+
if test -z '$(STRIP)'; then \
|
548
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
549
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
550
|
+
install; \
|
551
|
+
else \
|
552
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
553
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
554
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
555
|
+
fi
|
556
|
+
mostlyclean-generic:
|
557
|
+
|
558
|
+
clean-generic:
|
559
|
+
|
560
|
+
distclean-generic:
|
561
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
562
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
563
|
+
|
564
|
+
maintainer-clean-generic:
|
565
|
+
@echo "This command is intended for maintainers to use"
|
566
|
+
@echo "it deletes files that may require special tools to rebuild."
|
567
|
+
clean: clean-am
|
568
|
+
|
569
|
+
clean-am: clean-generic clean-libtool mostlyclean-am
|
570
|
+
|
571
|
+
distclean: distclean-am
|
572
|
+
-rm -f Makefile
|
573
|
+
distclean-am: clean-am distclean-generic distclean-tags
|
574
|
+
|
575
|
+
dvi: dvi-am
|
576
|
+
|
577
|
+
dvi-am:
|
578
|
+
|
579
|
+
html: html-am
|
580
|
+
|
581
|
+
html-am:
|
582
|
+
|
583
|
+
info: info-am
|
584
|
+
|
585
|
+
info-am:
|
586
|
+
|
587
|
+
install-data-am: install-nobase_includeHEADERS \
|
588
|
+
install-nobase_nodist_includeHEADERS
|
589
|
+
|
590
|
+
install-dvi: install-dvi-am
|
591
|
+
|
592
|
+
install-dvi-am:
|
593
|
+
|
594
|
+
install-exec-am:
|
595
|
+
|
596
|
+
install-html: install-html-am
|
597
|
+
|
598
|
+
install-html-am:
|
599
|
+
|
600
|
+
install-info: install-info-am
|
601
|
+
|
602
|
+
install-info-am:
|
603
|
+
|
604
|
+
install-man:
|
605
|
+
|
606
|
+
install-pdf: install-pdf-am
|
607
|
+
|
608
|
+
install-pdf-am:
|
609
|
+
|
610
|
+
install-ps: install-ps-am
|
611
|
+
|
612
|
+
install-ps-am:
|
613
|
+
|
614
|
+
installcheck-am:
|
615
|
+
|
616
|
+
maintainer-clean: maintainer-clean-am
|
617
|
+
-rm -f Makefile
|
618
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
619
|
+
|
620
|
+
mostlyclean: mostlyclean-am
|
621
|
+
|
622
|
+
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
623
|
+
|
624
|
+
pdf: pdf-am
|
625
|
+
|
626
|
+
pdf-am:
|
627
|
+
|
628
|
+
ps: ps-am
|
629
|
+
|
630
|
+
ps-am:
|
631
|
+
|
632
|
+
uninstall-am: uninstall-nobase_includeHEADERS \
|
633
|
+
uninstall-nobase_nodist_includeHEADERS
|
634
|
+
|
635
|
+
.MAKE: install-am install-strip
|
636
|
+
|
637
|
+
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
638
|
+
clean-libtool cscopelist-am ctags ctags-am distclean \
|
639
|
+
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
640
|
+
dvi-am html html-am info info-am install install-am \
|
641
|
+
install-data install-data-am install-dvi install-dvi-am \
|
642
|
+
install-exec install-exec-am install-html install-html-am \
|
643
|
+
install-info install-info-am install-man \
|
644
|
+
install-nobase_includeHEADERS \
|
645
|
+
install-nobase_nodist_includeHEADERS install-pdf \
|
646
|
+
install-pdf-am install-ps install-ps-am install-strip \
|
647
|
+
installcheck installcheck-am installdirs maintainer-clean \
|
648
|
+
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
649
|
+
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
650
|
+
uninstall-am uninstall-nobase_includeHEADERS \
|
651
|
+
uninstall-nobase_nodist_includeHEADERS
|
652
|
+
|
653
|
+
|
654
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
655
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
656
|
+
.NOEXPORT:
|