rbnacl-libsodium 0.5.0 → 0.5.0.1.pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -2
  3. data/ext/rbnacl/extconf.rb +0 -1
  4. data/lib/rbnacl/libsodium/version.rb +1 -1
  5. data/vendor/libsodium/Makefile.in +878 -0
  6. data/vendor/libsodium/aclocal.m4 +1214 -0
  7. data/vendor/libsodium/autom4te.cache/output.0 +17434 -0
  8. data/vendor/libsodium/autom4te.cache/output.1 +17434 -0
  9. data/vendor/libsodium/autom4te.cache/output.2 +17434 -0
  10. data/vendor/libsodium/autom4te.cache/requests +554 -0
  11. data/vendor/libsodium/autom4te.cache/traces.0 +2956 -0
  12. data/vendor/libsodium/autom4te.cache/traces.1 +829 -0
  13. data/vendor/libsodium/autom4te.cache/traces.2 +2956 -0
  14. data/vendor/libsodium/compile +347 -0
  15. data/vendor/libsodium/config.guess +1568 -0
  16. data/vendor/libsodium/config.sub +1793 -0
  17. data/vendor/libsodium/configure +17434 -0
  18. data/vendor/libsodium/depcomp +791 -0
  19. data/vendor/libsodium/dist-build/Makefile.in +453 -0
  20. data/vendor/libsodium/install-sh +527 -0
  21. data/vendor/libsodium/ltmain.sh +9655 -0
  22. data/vendor/libsodium/m4/libtool.m4 +7982 -0
  23. data/vendor/libsodium/m4/ltoptions.m4 +384 -0
  24. data/vendor/libsodium/m4/ltsugar.m4 +123 -0
  25. data/vendor/libsodium/m4/ltversion.m4 +23 -0
  26. data/vendor/libsodium/m4/lt~obsolete.m4 +98 -0
  27. data/vendor/libsodium/missing +215 -0
  28. data/vendor/libsodium/msvc-scripts/Makefile.in +448 -0
  29. data/vendor/libsodium/src/Makefile.in +626 -0
  30. data/vendor/libsodium/src/libsodium/Makefile.in +3725 -0
  31. data/vendor/libsodium/src/libsodium/include/Makefile.in +656 -0
  32. data/vendor/libsodium/test-driver +139 -0
  33. data/vendor/libsodium/test/Makefile.in +629 -0
  34. data/vendor/libsodium/test/default/Makefile.in +2047 -0
  35. metadata +35 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e8ed461ce769d0dba8b99e811c9400d20911e5ff
4
- data.tar.gz: a9f739368935abb90deb0c22e672af7e1c9ff374
3
+ metadata.gz: 90933d8604a309de14f3316af6192986890de91b
4
+ data.tar.gz: 146a4fbc5c7821877e6be9b41ce2162d5a4bd493
5
5
  SHA512:
6
- metadata.gz: 0db842969dbfcda987cd1f842dbc61a62605b1b5bfab947f76b5b2c3964daa29389eed259a843114c9f9b821ee284587383f468d400d4788b6f61351e51597d9
7
- data.tar.gz: 2c3c1d7df0e5f0cb72b7efe8d6c315237231ac0303e01225fc0fb8d11d0363fc3876c06bf88095f81e1ae7ccc920c979ebd473c2114a2dacba526f2458fc9a57
6
+ metadata.gz: aa53286304362e57384ae470773a4cb8668420547e9ae46aac1d177e978475ca2298600c86b2ac1797efca2d9885b576b8b385f2f8e8f1915a8b7fe0ac5cf614
7
+ data.tar.gz: cc8c5ca5780126c39446326f293106ffc8211efac24d22a7e8473a9a77b2275bbc80f180f19d191ebda18122c875089d128f9c3b9bb5c2d096255888f20ccf3e
data/README.md CHANGED
@@ -1,6 +1,19 @@
1
- # RbNaCl::Libsodium
1
+ RbNaCl::Libsodium
2
+ =================
3
+ [![Gem Version](https://badge.fury.io/rb/rbnacl-libsodium.png)](http://badge.fury.io/rb/rbnacl-libsodium)
2
4
 
3
- RbNaCl + libsodium packaged as a gem
5
+ [RbNaCl] is a Ruby wrapper for [libsodium], a portable version of the Networking and
6
+ Cryptography library ([NaCl]) created by Daniel J. Bernstein.
7
+
8
+ tl;dr: it's one of the best crypto libraries around.
9
+
10
+ rbnacl-libsodium packages the libsodium library as a Ruby Gem so you don't have
11
+ to worry about installing it through system packages. It builds just like a
12
+ native extension, but since RbNaCl is implemented with FFI, works on JRuby too!
13
+
14
+ [RbNaCl]: https://github.com/cryptosphere/rbnacl
15
+ [libsodium]: https://github.com/jedisct1/libsodium
16
+ [NaCl]: http://nacl.cr.yp.to/
4
17
 
5
18
  ## Installation
6
19
 
@@ -19,7 +19,6 @@ LIBSODIUM_DIR = File.expand_path(File.join(CWD, '..', '..', 'vendor', 'libsodium
19
19
  MAKE = ENV['MAKE'] || ENV['make'] || "make"
20
20
 
21
21
  Dir.chdir(LIBSODIUM_DIR) do
22
- sys("./autogen.sh")
23
22
  sys("./configure --prefix=#{LIBSODIUM_DIR}/dist")
24
23
  sys(MAKE)
25
24
  sys("#{MAKE} install")
@@ -1,5 +1,5 @@
1
1
  module RbNaCl
2
2
  module Libsodium
3
- VERSION = "0.5.0"
3
+ VERSION = "0.5.0.1.pre"
4
4
  end
5
5
  end
@@ -0,0 +1,878 @@
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 = .
82
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
83
+ $(top_srcdir)/configure $(am__configure_deps) \
84
+ $(srcdir)/libsodium.pc.in \
85
+ $(top_srcdir)/src/libsodium/include/sodium/version.h.in \
86
+ AUTHORS ChangeLog README THANKS compile config.guess \
87
+ config.sub install-sh missing ltmain.sh
88
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
89
+ am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
90
+ $(top_srcdir)/m4/ax_check_link_flag.m4 \
91
+ $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
92
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
93
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
94
+ $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/configure.ac
95
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
96
+ $(ACLOCAL_M4)
97
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
98
+ configure.lineno config.status.lineno
99
+ mkinstalldirs = $(install_sh) -d
100
+ CONFIG_CLEAN_FILES = libsodium.pc \
101
+ src/libsodium/include/sodium/version.h
102
+ CONFIG_CLEAN_VPATH_FILES =
103
+ AM_V_P = $(am__v_P_@AM_V@)
104
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
105
+ am__v_P_0 = false
106
+ am__v_P_1 = :
107
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
108
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
109
+ am__v_GEN_0 = @echo " GEN " $@;
110
+ am__v_GEN_1 =
111
+ AM_V_at = $(am__v_at_@AM_V@)
112
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
113
+ am__v_at_0 = @
114
+ am__v_at_1 =
115
+ SOURCES =
116
+ DIST_SOURCES =
117
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
118
+ ctags-recursive dvi-recursive html-recursive info-recursive \
119
+ install-data-recursive install-dvi-recursive \
120
+ install-exec-recursive install-html-recursive \
121
+ install-info-recursive install-pdf-recursive \
122
+ install-ps-recursive install-recursive installcheck-recursive \
123
+ installdirs-recursive pdf-recursive ps-recursive \
124
+ tags-recursive uninstall-recursive
125
+ am__can_run_installinfo = \
126
+ case $$AM_UPDATE_INFO_DIR in \
127
+ n|no|NO) false;; \
128
+ *) (install-info --version) >/dev/null 2>&1;; \
129
+ esac
130
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
131
+ am__vpath_adj = case $$p in \
132
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
133
+ *) f=$$p;; \
134
+ esac;
135
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
136
+ am__install_max = 40
137
+ am__nobase_strip_setup = \
138
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
139
+ am__nobase_strip = \
140
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
141
+ am__nobase_list = $(am__nobase_strip_setup); \
142
+ for p in $$list; do echo "$$p $$p"; done | \
143
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
144
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
145
+ if (++n[$$2] == $(am__install_max)) \
146
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
147
+ END { for (dir in files) print dir, files[dir] }'
148
+ am__base_list = \
149
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
150
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
151
+ am__uninstall_files_from_dir = { \
152
+ test -z "$$files" \
153
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
154
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
155
+ $(am__cd) "$$dir" && rm -f $$files; }; \
156
+ }
157
+ am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
158
+ DATA = $(pkgconfig_DATA)
159
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
160
+ distclean-recursive maintainer-clean-recursive
161
+ am__recursive_targets = \
162
+ $(RECURSIVE_TARGETS) \
163
+ $(RECURSIVE_CLEAN_TARGETS) \
164
+ $(am__extra_recursive_targets)
165
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
166
+ cscope distdir dist dist-all distcheck
167
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
168
+ # Read a list of newline-separated strings from the standard input,
169
+ # and print each of them once, without duplicates. Input order is
170
+ # *not* preserved.
171
+ am__uniquify_input = $(AWK) '\
172
+ BEGIN { nonempty = 0; } \
173
+ { items[$$0] = 1; nonempty = 1; } \
174
+ END { if (nonempty) { for (i in items) print i; }; } \
175
+ '
176
+ # Make sure the list of sources is unique. This is necessary because,
177
+ # e.g., the same source file might be shared among _SOURCES variables
178
+ # for different programs/libraries.
179
+ am__define_uniq_tagged_files = \
180
+ list='$(am__tagged_files)'; \
181
+ unique=`for i in $$list; do \
182
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
183
+ done | $(am__uniquify_input)`
184
+ ETAGS = etags
185
+ CTAGS = ctags
186
+ CSCOPE = cscope
187
+ DIST_SUBDIRS = $(SUBDIRS)
188
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
189
+ distdir = $(PACKAGE)-$(VERSION)
190
+ top_distdir = $(distdir)
191
+ am__remove_distdir = \
192
+ if test -d "$(distdir)"; then \
193
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
194
+ && rm -rf "$(distdir)" \
195
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
196
+ else :; fi
197
+ am__post_remove_distdir = $(am__remove_distdir)
198
+ am__relativize = \
199
+ dir0=`pwd`; \
200
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
201
+ sed_rest='s,^[^/]*/*,,'; \
202
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
203
+ sed_butlast='s,/*[^/]*$$,,'; \
204
+ while test -n "$$dir1"; do \
205
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
206
+ if test "$$first" != "."; then \
207
+ if test "$$first" = ".."; then \
208
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
209
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
210
+ else \
211
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
212
+ if test "$$first2" = "$$first"; then \
213
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
214
+ else \
215
+ dir2="../$$dir2"; \
216
+ fi; \
217
+ dir0="$$dir0"/"$$first"; \
218
+ fi; \
219
+ fi; \
220
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
221
+ done; \
222
+ reldir="$$dir2"
223
+ DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
224
+ GZIP_ENV = --best
225
+ DIST_TARGETS = dist-bzip2 dist-gzip
226
+ distuninstallcheck_listfiles = find . -type f -print
227
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
228
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
229
+ distcleancheck_listfiles = find . -type f -print
230
+ ACLOCAL = @ACLOCAL@
231
+ AMTAR = @AMTAR@
232
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
233
+ AR = @AR@
234
+ AS = @AS@
235
+ AUTOCONF = @AUTOCONF@
236
+ AUTOHEADER = @AUTOHEADER@
237
+ AUTOMAKE = @AUTOMAKE@
238
+ AWK = @AWK@
239
+ CC = @CC@
240
+ CCAS = @CCAS@
241
+ CCASDEPMODE = @CCASDEPMODE@
242
+ CCASFLAGS = @CCASFLAGS@
243
+ CCDEPMODE = @CCDEPMODE@
244
+ CFLAGS = @CFLAGS@
245
+ CPP = @CPP@
246
+ CPPFLAGS = @CPPFLAGS@
247
+ CWFLAGS = @CWFLAGS@
248
+ CYGPATH_W = @CYGPATH_W@
249
+ DEFS = @DEFS@
250
+ DEPDIR = @DEPDIR@
251
+ DLLTOOL = @DLLTOOL@
252
+ DLL_VERSION = @DLL_VERSION@
253
+ DSYMUTIL = @DSYMUTIL@
254
+ DUMPBIN = @DUMPBIN@
255
+ ECHO_C = @ECHO_C@
256
+ ECHO_N = @ECHO_N@
257
+ ECHO_T = @ECHO_T@
258
+ EGREP = @EGREP@
259
+ EXEEXT = @EXEEXT@
260
+ FGREP = @FGREP@
261
+ GREP = @GREP@
262
+ HAVE_AMD64_ASM_V = @HAVE_AMD64_ASM_V@
263
+ HAVE_CPUID_V = @HAVE_CPUID_V@
264
+ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
265
+ HAVE_TI_MODE_V = @HAVE_TI_MODE_V@
266
+ INSTALL = @INSTALL@
267
+ INSTALL_DATA = @INSTALL_DATA@
268
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
269
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
270
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
271
+ ISODATE = @ISODATE@
272
+ LD = @LD@
273
+ LDFLAGS = @LDFLAGS@
274
+ LIBOBJS = @LIBOBJS@
275
+ LIBS = @LIBS@
276
+ LIBTOOL = @LIBTOOL@
277
+ LIBTOOL_DEPS = @LIBTOOL_DEPS@
278
+ LIBTOOL_EXTRA_FLAGS = @LIBTOOL_EXTRA_FLAGS@
279
+ LIPO = @LIPO@
280
+ LN_S = @LN_S@
281
+ LTLIBOBJS = @LTLIBOBJS@
282
+ MAINT = @MAINT@
283
+ MAKEINFO = @MAKEINFO@
284
+ MANIFEST_TOOL = @MANIFEST_TOOL@
285
+ MKDIR_P = @MKDIR_P@
286
+ NM = @NM@
287
+ NMEDIT = @NMEDIT@
288
+ OBJDUMP = @OBJDUMP@
289
+ OBJEXT = @OBJEXT@
290
+ OTOOL = @OTOOL@
291
+ OTOOL64 = @OTOOL64@
292
+ PACKAGE = @PACKAGE@
293
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
294
+ PACKAGE_NAME = @PACKAGE_NAME@
295
+ PACKAGE_STRING = @PACKAGE_STRING@
296
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
297
+ PACKAGE_URL = @PACKAGE_URL@
298
+ PACKAGE_VERSION = @PACKAGE_VERSION@
299
+ PATH_SEPARATOR = @PATH_SEPARATOR@
300
+ PKG_CONFIG = @PKG_CONFIG@
301
+ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
302
+ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
303
+ RANLIB = @RANLIB@
304
+ SAFECODE_HOME = @SAFECODE_HOME@
305
+ SED = @SED@
306
+ SET_MAKE = @SET_MAKE@
307
+ SHELL = @SHELL@
308
+ SODIUM_LIBRARY_VERSION = @SODIUM_LIBRARY_VERSION@
309
+ SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
310
+ SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
311
+ STRIP = @STRIP@
312
+ VERSION = @VERSION@
313
+ abs_builddir = @abs_builddir@
314
+ abs_srcdir = @abs_srcdir@
315
+ abs_top_builddir = @abs_top_builddir@
316
+ abs_top_srcdir = @abs_top_srcdir@
317
+ ac_ct_AR = @ac_ct_AR@
318
+ ac_ct_CC = @ac_ct_CC@
319
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
320
+ am__include = @am__include@
321
+ am__leading_dot = @am__leading_dot@
322
+ am__quote = @am__quote@
323
+ am__tar = @am__tar@
324
+ am__untar = @am__untar@
325
+ bindir = @bindir@
326
+ build = @build@
327
+ build_alias = @build_alias@
328
+ build_cpu = @build_cpu@
329
+ build_os = @build_os@
330
+ build_vendor = @build_vendor@
331
+ builddir = @builddir@
332
+ datadir = @datadir@
333
+ datarootdir = @datarootdir@
334
+ docdir = @docdir@
335
+ dvidir = @dvidir@
336
+ exec_prefix = @exec_prefix@
337
+ host = @host@
338
+ host_alias = @host_alias@
339
+ host_cpu = @host_cpu@
340
+ host_os = @host_os@
341
+ host_vendor = @host_vendor@
342
+ htmldir = @htmldir@
343
+ includedir = @includedir@
344
+ infodir = @infodir@
345
+ install_sh = @install_sh@
346
+ libdir = @libdir@
347
+ libexecdir = @libexecdir@
348
+ localedir = @localedir@
349
+ localstatedir = @localstatedir@
350
+ mandir = @mandir@
351
+ mkdir_p = @mkdir_p@
352
+ oldincludedir = @oldincludedir@
353
+ pdfdir = @pdfdir@
354
+ prefix = @prefix@
355
+ program_transform_name = @program_transform_name@
356
+ psdir = @psdir@
357
+ sbindir = @sbindir@
358
+ sharedstatedir = @sharedstatedir@
359
+ srcdir = @srcdir@
360
+ sysconfdir = @sysconfdir@
361
+ target_alias = @target_alias@
362
+ top_build_prefix = @top_build_prefix@
363
+ top_builddir = @top_builddir@
364
+ top_srcdir = @top_srcdir@
365
+ ACLOCAL_AMFLAGS = -I m4
366
+ EXTRA_DIST = \
367
+ autogen.sh \
368
+ libsodium.sln \
369
+ libsodium.vcxproj \
370
+ libsodium.vcxproj.filters \
371
+ LICENSE \
372
+ README.markdown \
373
+ THANKS
374
+
375
+ SUBDIRS = \
376
+ dist-build \
377
+ msvc-scripts \
378
+ src \
379
+ test
380
+
381
+ @HAVE_PKG_CONFIG_TRUE@pkgconfigdir = $(libdir)/pkgconfig
382
+ @HAVE_PKG_CONFIG_TRUE@pkgconfig_DATA = @PACKAGE_NAME@.pc
383
+ all: all-recursive
384
+
385
+ .SUFFIXES:
386
+ am--refresh: Makefile
387
+ @:
388
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
389
+ @for dep in $?; do \
390
+ case '$(am__configure_deps)' in \
391
+ *$$dep*) \
392
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
393
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
394
+ && exit 0; \
395
+ exit 1;; \
396
+ esac; \
397
+ done; \
398
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
399
+ $(am__cd) $(top_srcdir) && \
400
+ $(AUTOMAKE) --foreign Makefile
401
+ .PRECIOUS: Makefile
402
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
403
+ @case '$?' in \
404
+ *config.status*) \
405
+ echo ' $(SHELL) ./config.status'; \
406
+ $(SHELL) ./config.status;; \
407
+ *) \
408
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
409
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
410
+ esac;
411
+
412
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
413
+ $(SHELL) ./config.status --recheck
414
+
415
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
416
+ $(am__cd) $(srcdir) && $(AUTOCONF)
417
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
418
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
419
+ $(am__aclocal_m4_deps):
420
+ libsodium.pc: $(top_builddir)/config.status $(srcdir)/libsodium.pc.in
421
+ cd $(top_builddir) && $(SHELL) ./config.status $@
422
+ src/libsodium/include/sodium/version.h: $(top_builddir)/config.status $(top_srcdir)/src/libsodium/include/sodium/version.h.in
423
+ cd $(top_builddir) && $(SHELL) ./config.status $@
424
+
425
+ mostlyclean-libtool:
426
+ -rm -f *.lo
427
+
428
+ clean-libtool:
429
+ -rm -rf .libs _libs
430
+
431
+ distclean-libtool:
432
+ -rm -f libtool config.lt
433
+ install-pkgconfigDATA: $(pkgconfig_DATA)
434
+ @$(NORMAL_INSTALL)
435
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
436
+ if test -n "$$list"; then \
437
+ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
438
+ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
439
+ fi; \
440
+ for p in $$list; do \
441
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
442
+ echo "$$d$$p"; \
443
+ done | $(am__base_list) | \
444
+ while read files; do \
445
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
446
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
447
+ done
448
+
449
+ uninstall-pkgconfigDATA:
450
+ @$(NORMAL_UNINSTALL)
451
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
452
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
453
+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
454
+
455
+ # This directory's subdirectories are mostly independent; you can cd
456
+ # into them and run 'make' without going through this Makefile.
457
+ # To change the values of 'make' variables: instead of editing Makefiles,
458
+ # (1) if the variable is set in 'config.status', edit 'config.status'
459
+ # (which will cause the Makefiles to be regenerated when you run 'make');
460
+ # (2) otherwise, pass the desired values on the 'make' command line.
461
+ $(am__recursive_targets):
462
+ @fail=; \
463
+ if $(am__make_keepgoing); then \
464
+ failcom='fail=yes'; \
465
+ else \
466
+ failcom='exit 1'; \
467
+ fi; \
468
+ dot_seen=no; \
469
+ target=`echo $@ | sed s/-recursive//`; \
470
+ case "$@" in \
471
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
472
+ *) list='$(SUBDIRS)' ;; \
473
+ esac; \
474
+ for subdir in $$list; do \
475
+ echo "Making $$target in $$subdir"; \
476
+ if test "$$subdir" = "."; then \
477
+ dot_seen=yes; \
478
+ local_target="$$target-am"; \
479
+ else \
480
+ local_target="$$target"; \
481
+ fi; \
482
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
483
+ || eval $$failcom; \
484
+ done; \
485
+ if test "$$dot_seen" = "no"; then \
486
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
487
+ fi; test -z "$$fail"
488
+
489
+ ID: $(am__tagged_files)
490
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
491
+ tags: tags-recursive
492
+ TAGS: tags
493
+
494
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
495
+ set x; \
496
+ here=`pwd`; \
497
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
498
+ include_option=--etags-include; \
499
+ empty_fix=.; \
500
+ else \
501
+ include_option=--include; \
502
+ empty_fix=; \
503
+ fi; \
504
+ list='$(SUBDIRS)'; for subdir in $$list; do \
505
+ if test "$$subdir" = .; then :; else \
506
+ test ! -f $$subdir/TAGS || \
507
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
508
+ fi; \
509
+ done; \
510
+ $(am__define_uniq_tagged_files); \
511
+ shift; \
512
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
513
+ test -n "$$unique" || unique=$$empty_fix; \
514
+ if test $$# -gt 0; then \
515
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
516
+ "$$@" $$unique; \
517
+ else \
518
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
519
+ $$unique; \
520
+ fi; \
521
+ fi
522
+ ctags: ctags-recursive
523
+
524
+ CTAGS: ctags
525
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
526
+ $(am__define_uniq_tagged_files); \
527
+ test -z "$(CTAGS_ARGS)$$unique" \
528
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
529
+ $$unique
530
+
531
+ GTAGS:
532
+ here=`$(am__cd) $(top_builddir) && pwd` \
533
+ && $(am__cd) $(top_srcdir) \
534
+ && gtags -i $(GTAGS_ARGS) "$$here"
535
+ cscope: cscope.files
536
+ test ! -s cscope.files \
537
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
538
+ clean-cscope:
539
+ -rm -f cscope.files
540
+ cscope.files: clean-cscope cscopelist
541
+ cscopelist: cscopelist-recursive
542
+
543
+ cscopelist-am: $(am__tagged_files)
544
+ list='$(am__tagged_files)'; \
545
+ case "$(srcdir)" in \
546
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
547
+ *) sdir=$(subdir)/$(srcdir) ;; \
548
+ esac; \
549
+ for i in $$list; do \
550
+ if test -f "$$i"; then \
551
+ echo "$(subdir)/$$i"; \
552
+ else \
553
+ echo "$$sdir/$$i"; \
554
+ fi; \
555
+ done >> $(top_builddir)/cscope.files
556
+
557
+ distclean-tags:
558
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
559
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
560
+
561
+ distdir: $(DISTFILES)
562
+ $(am__remove_distdir)
563
+ test -d "$(distdir)" || mkdir "$(distdir)"
564
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
565
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
566
+ list='$(DISTFILES)'; \
567
+ dist_files=`for file in $$list; do echo $$file; done | \
568
+ sed -e "s|^$$srcdirstrip/||;t" \
569
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
570
+ case $$dist_files in \
571
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
572
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
573
+ sort -u` ;; \
574
+ esac; \
575
+ for file in $$dist_files; do \
576
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
577
+ if test -d $$d/$$file; then \
578
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
579
+ if test -d "$(distdir)/$$file"; then \
580
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
581
+ fi; \
582
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
583
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
584
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
585
+ fi; \
586
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
587
+ else \
588
+ test -f "$(distdir)/$$file" \
589
+ || cp -p $$d/$$file "$(distdir)/$$file" \
590
+ || exit 1; \
591
+ fi; \
592
+ done
593
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
594
+ if test "$$subdir" = .; then :; else \
595
+ $(am__make_dryrun) \
596
+ || test -d "$(distdir)/$$subdir" \
597
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
598
+ || exit 1; \
599
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
600
+ $(am__relativize); \
601
+ new_distdir=$$reldir; \
602
+ dir1=$$subdir; dir2="$(top_distdir)"; \
603
+ $(am__relativize); \
604
+ new_top_distdir=$$reldir; \
605
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
606
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
607
+ ($(am__cd) $$subdir && \
608
+ $(MAKE) $(AM_MAKEFLAGS) \
609
+ top_distdir="$$new_top_distdir" \
610
+ distdir="$$new_distdir" \
611
+ am__remove_distdir=: \
612
+ am__skip_length_check=: \
613
+ am__skip_mode_fix=: \
614
+ distdir) \
615
+ || exit 1; \
616
+ fi; \
617
+ done
618
+ -test -n "$(am__skip_mode_fix)" \
619
+ || find "$(distdir)" -type d ! -perm -755 \
620
+ -exec chmod u+rwx,go+rx {} \; -o \
621
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
622
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
623
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
624
+ || chmod -R a+r "$(distdir)"
625
+ dist-gzip: distdir
626
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
627
+ $(am__post_remove_distdir)
628
+ dist-bzip2: distdir
629
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
630
+ $(am__post_remove_distdir)
631
+
632
+ dist-lzip: distdir
633
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
634
+ $(am__post_remove_distdir)
635
+
636
+ dist-xz: distdir
637
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
638
+ $(am__post_remove_distdir)
639
+
640
+ dist-tarZ: distdir
641
+ @echo WARNING: "Support for shar distribution archives is" \
642
+ "deprecated." >&2
643
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
644
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
645
+ $(am__post_remove_distdir)
646
+
647
+ dist-shar: distdir
648
+ @echo WARNING: "Support for distribution archives compressed with" \
649
+ "legacy program 'compress' is deprecated." >&2
650
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
651
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
652
+ $(am__post_remove_distdir)
653
+
654
+ dist-zip: distdir
655
+ -rm -f $(distdir).zip
656
+ zip -rq $(distdir).zip $(distdir)
657
+ $(am__post_remove_distdir)
658
+
659
+ dist dist-all:
660
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
661
+ $(am__post_remove_distdir)
662
+
663
+ # This target untars the dist file and tries a VPATH configuration. Then
664
+ # it guarantees that the distribution is self-contained by making another
665
+ # tarfile.
666
+ distcheck: dist
667
+ case '$(DIST_ARCHIVES)' in \
668
+ *.tar.gz*) \
669
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
670
+ *.tar.bz2*) \
671
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
672
+ *.tar.lz*) \
673
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
674
+ *.tar.xz*) \
675
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
676
+ *.tar.Z*) \
677
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
678
+ *.shar.gz*) \
679
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
680
+ *.zip*) \
681
+ unzip $(distdir).zip ;;\
682
+ esac
683
+ chmod -R a-w $(distdir)
684
+ chmod u+w $(distdir)
685
+ mkdir $(distdir)/_build $(distdir)/_inst
686
+ chmod a-w $(distdir)
687
+ test -d $(distdir)/_build || exit 0; \
688
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
689
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
690
+ && am__cwd=`pwd` \
691
+ && $(am__cd) $(distdir)/_build \
692
+ && ../configure \
693
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
694
+ $(DISTCHECK_CONFIGURE_FLAGS) \
695
+ --srcdir=.. --prefix="$$dc_install_base" \
696
+ && $(MAKE) $(AM_MAKEFLAGS) \
697
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
698
+ && $(MAKE) $(AM_MAKEFLAGS) check \
699
+ && $(MAKE) $(AM_MAKEFLAGS) install \
700
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
701
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
702
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
703
+ distuninstallcheck \
704
+ && chmod -R a-w "$$dc_install_base" \
705
+ && ({ \
706
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
707
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
708
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
709
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
710
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
711
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
712
+ && rm -rf "$$dc_destdir" \
713
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
714
+ && rm -rf $(DIST_ARCHIVES) \
715
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
716
+ && cd "$$am__cwd" \
717
+ || exit 1
718
+ $(am__post_remove_distdir)
719
+ @(echo "$(distdir) archives ready for distribution: "; \
720
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
721
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
722
+ distuninstallcheck:
723
+ @test -n '$(distuninstallcheck_dir)' || { \
724
+ echo 'ERROR: trying to run $@ with an empty' \
725
+ '$$(distuninstallcheck_dir)' >&2; \
726
+ exit 1; \
727
+ }; \
728
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
729
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
730
+ exit 1; \
731
+ }; \
732
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
733
+ || { echo "ERROR: files left after uninstall:" ; \
734
+ if test -n "$(DESTDIR)"; then \
735
+ echo " (check DESTDIR support)"; \
736
+ fi ; \
737
+ $(distuninstallcheck_listfiles) ; \
738
+ exit 1; } >&2
739
+ distcleancheck: distclean
740
+ @if test '$(srcdir)' = . ; then \
741
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
742
+ exit 1 ; \
743
+ fi
744
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
745
+ || { echo "ERROR: files left in build directory after distclean:" ; \
746
+ $(distcleancheck_listfiles) ; \
747
+ exit 1; } >&2
748
+ check-am: all-am
749
+ check: check-recursive
750
+ all-am: Makefile $(DATA)
751
+ installdirs: installdirs-recursive
752
+ installdirs-am:
753
+ for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
754
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
755
+ done
756
+ install: install-recursive
757
+ install-exec: install-exec-recursive
758
+ install-data: install-data-recursive
759
+ uninstall: uninstall-recursive
760
+
761
+ install-am: all-am
762
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
763
+
764
+ installcheck: installcheck-recursive
765
+ install-strip:
766
+ if test -z '$(STRIP)'; then \
767
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
768
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
769
+ install; \
770
+ else \
771
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
772
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
773
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
774
+ fi
775
+ mostlyclean-generic:
776
+
777
+ clean-generic:
778
+
779
+ distclean-generic:
780
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
781
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
782
+
783
+ maintainer-clean-generic:
784
+ @echo "This command is intended for maintainers to use"
785
+ @echo "it deletes files that may require special tools to rebuild."
786
+ clean: clean-recursive
787
+
788
+ clean-am: clean-generic clean-libtool mostlyclean-am
789
+
790
+ distclean: distclean-recursive
791
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
792
+ -rm -f Makefile
793
+ distclean-am: clean-am distclean-generic distclean-libtool \
794
+ distclean-tags
795
+
796
+ dvi: dvi-recursive
797
+
798
+ dvi-am:
799
+
800
+ html: html-recursive
801
+
802
+ html-am:
803
+
804
+ info: info-recursive
805
+
806
+ info-am:
807
+
808
+ install-data-am: install-pkgconfigDATA
809
+
810
+ install-dvi: install-dvi-recursive
811
+
812
+ install-dvi-am:
813
+
814
+ install-exec-am:
815
+
816
+ install-html: install-html-recursive
817
+
818
+ install-html-am:
819
+
820
+ install-info: install-info-recursive
821
+
822
+ install-info-am:
823
+
824
+ install-man:
825
+
826
+ install-pdf: install-pdf-recursive
827
+
828
+ install-pdf-am:
829
+
830
+ install-ps: install-ps-recursive
831
+
832
+ install-ps-am:
833
+
834
+ installcheck-am:
835
+
836
+ maintainer-clean: maintainer-clean-recursive
837
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
838
+ -rm -rf $(top_srcdir)/autom4te.cache
839
+ -rm -f Makefile
840
+ maintainer-clean-am: distclean-am maintainer-clean-generic
841
+
842
+ mostlyclean: mostlyclean-recursive
843
+
844
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
845
+
846
+ pdf: pdf-recursive
847
+
848
+ pdf-am:
849
+
850
+ ps: ps-recursive
851
+
852
+ ps-am:
853
+
854
+ uninstall-am: uninstall-pkgconfigDATA
855
+
856
+ .MAKE: $(am__recursive_targets) install-am install-strip
857
+
858
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
859
+ am--refresh check check-am clean clean-cscope clean-generic \
860
+ clean-libtool cscope cscopelist-am ctags ctags-am dist \
861
+ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
862
+ dist-xz dist-zip distcheck distclean distclean-generic \
863
+ distclean-libtool distclean-tags distcleancheck distdir \
864
+ distuninstallcheck dvi dvi-am html html-am info info-am \
865
+ install install-am install-data install-data-am install-dvi \
866
+ install-dvi-am install-exec install-exec-am install-html \
867
+ install-html-am install-info install-info-am install-man \
868
+ install-pdf install-pdf-am install-pkgconfigDATA install-ps \
869
+ install-ps-am install-strip installcheck installcheck-am \
870
+ installdirs installdirs-am maintainer-clean \
871
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
872
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
873
+ uninstall-am uninstall-pkgconfigDATA
874
+
875
+
876
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
877
+ # Otherwise a system limit (for SysV at least) may be exceeded.
878
+ .NOEXPORT: