Makefile.in 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. # Makefile.in generated by automake 1.15.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2017 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. VPATH = @srcdir@
  13. am__is_gnu_make = { \
  14. if test -z '$(MAKELEVEL)'; then \
  15. false; \
  16. elif test -n '$(MAKE_HOST)'; then \
  17. true; \
  18. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  19. true; \
  20. else \
  21. false; \
  22. fi; \
  23. }
  24. am__make_running_with_option = \
  25. case $${target_option-} in \
  26. ?) ;; \
  27. *) echo "am__make_running_with_option: internal error: invalid" \
  28. "target option '$${target_option-}' specified" >&2; \
  29. exit 1;; \
  30. esac; \
  31. has_opt=no; \
  32. sane_makeflags=$$MAKEFLAGS; \
  33. if $(am__is_gnu_make); then \
  34. sane_makeflags=$$MFLAGS; \
  35. else \
  36. case $$MAKEFLAGS in \
  37. *\\[\ \ ]*) \
  38. bs=\\; \
  39. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  40. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  41. esac; \
  42. fi; \
  43. skip_next=no; \
  44. strip_trailopt () \
  45. { \
  46. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  47. }; \
  48. for flg in $$sane_makeflags; do \
  49. test $$skip_next = yes && { skip_next=no; continue; }; \
  50. case $$flg in \
  51. *=*|--*) continue;; \
  52. -*I) strip_trailopt 'I'; skip_next=yes;; \
  53. -*I?*) strip_trailopt 'I';; \
  54. -*O) strip_trailopt 'O'; skip_next=yes;; \
  55. -*O?*) strip_trailopt 'O';; \
  56. -*l) strip_trailopt 'l'; skip_next=yes;; \
  57. -*l?*) strip_trailopt 'l';; \
  58. -[dEDm]) skip_next=yes;; \
  59. -[JT]) skip_next=yes;; \
  60. esac; \
  61. case $$flg in \
  62. *$$target_option*) has_opt=yes; break;; \
  63. esac; \
  64. done; \
  65. test $$has_opt = yes
  66. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  67. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  68. pkgdatadir = $(datadir)/@PACKAGE@
  69. pkgincludedir = $(includedir)/@PACKAGE@
  70. pkglibdir = $(libdir)/@PACKAGE@
  71. pkglibexecdir = $(libexecdir)/@PACKAGE@
  72. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  73. install_sh_DATA = $(install_sh) -c -m 644
  74. install_sh_PROGRAM = $(install_sh) -c
  75. install_sh_SCRIPT = $(install_sh) -c
  76. INSTALL_HEADER = $(INSTALL_DATA)
  77. transform = $(program_transform_name)
  78. NORMAL_INSTALL = :
  79. PRE_INSTALL = :
  80. POST_INSTALL = :
  81. NORMAL_UNINSTALL = :
  82. PRE_UNINSTALL = :
  83. POST_UNINSTALL = :
  84. build_triplet = @build@
  85. host_triplet = @host@
  86. target_triplet = @target@
  87. @HAVE_LD_VERSION_SCRIPT_TRUE@am__append_1 = -Wl,--version-script=$(srcdir)/libjose.map
  88. @HAVE_LD_VERSION_SCRIPT_FALSE@am__append_2 = -export-symbols-regex '^jose_.*' -version-info 1:0:0
  89. subdir = lib
  90. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  91. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  92. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  93. $(ACLOCAL_M4)
  94. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  95. mkinstalldirs = $(install_sh) -d
  96. CONFIG_CLEAN_FILES =
  97. CONFIG_CLEAN_VPATH_FILES =
  98. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  99. am__vpath_adj = case $$p in \
  100. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  101. *) f=$$p;; \
  102. esac;
  103. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  104. am__install_max = 40
  105. am__nobase_strip_setup = \
  106. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  107. am__nobase_strip = \
  108. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  109. am__nobase_list = $(am__nobase_strip_setup); \
  110. for p in $$list; do echo "$$p $$p"; done | \
  111. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  112. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  113. if (++n[$$2] == $(am__install_max)) \
  114. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  115. END { for (dir in files) print dir, files[dir] }'
  116. am__base_list = \
  117. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  118. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  119. am__uninstall_files_from_dir = { \
  120. test -z "$$files" \
  121. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  122. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  123. $(am__cd) "$$dir" && rm -f $$files; }; \
  124. }
  125. am__installdirs = "$(DESTDIR)$(libdir)"
  126. LTLIBRARIES = $(lib_LTLIBRARIES)
  127. libjose_la_DEPENDENCIES =
  128. am__dirstamp = $(am__leading_dot)dirstamp
  129. am_libjose_la_OBJECTS = misc.lo cfg.lo io.lo b64.lo hsh.lo hooks.lo \
  130. jwk.lo jws.lo jwe.lo zlib/deflate.lo openssl/aescbch.lo \
  131. openssl/aesgcm.lo openssl/aesgcmkw.lo openssl/aeskw.lo \
  132. openssl/compat.lo openssl/dir.lo openssl/ec.lo openssl/ecdh.lo \
  133. openssl/ecdhes.lo openssl/ecmr.lo openssl/ecdsa.lo \
  134. openssl/hash.lo openssl/hmac.lo openssl/jwk.lo openssl/lock.lo \
  135. openssl/misc.lo openssl/oct.lo openssl/pbes2.lo openssl/rsa.lo \
  136. openssl/rsaes.lo openssl/rsassa.lo
  137. libjose_la_OBJECTS = $(am_libjose_la_OBJECTS)
  138. AM_V_lt = $(am__v_lt_@AM_V@)
  139. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  140. am__v_lt_0 = --silent
  141. am__v_lt_1 =
  142. libjose_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  143. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  144. $(libjose_la_LDFLAGS) $(LDFLAGS) -o $@
  145. AM_V_P = $(am__v_P_@AM_V@)
  146. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  147. am__v_P_0 = false
  148. am__v_P_1 = :
  149. AM_V_GEN = $(am__v_GEN_@AM_V@)
  150. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  151. am__v_GEN_0 = @echo " GEN " $@;
  152. am__v_GEN_1 =
  153. AM_V_at = $(am__v_at_@AM_V@)
  154. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  155. am__v_at_0 = @
  156. am__v_at_1 =
  157. DEFAULT_INCLUDES = -I.@am__isrc@
  158. depcomp = $(SHELL) $(top_srcdir)/depcomp
  159. am__depfiles_maybe = depfiles
  160. am__mv = mv -f
  161. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  162. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  163. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  164. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  165. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  166. $(AM_CFLAGS) $(CFLAGS)
  167. AM_V_CC = $(am__v_CC_@AM_V@)
  168. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  169. am__v_CC_0 = @echo " CC " $@;
  170. am__v_CC_1 =
  171. CCLD = $(CC)
  172. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  173. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  174. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  175. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  176. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  177. am__v_CCLD_0 = @echo " CCLD " $@;
  178. am__v_CCLD_1 =
  179. SOURCES = $(libjose_la_SOURCES)
  180. DIST_SOURCES = $(libjose_la_SOURCES)
  181. am__can_run_installinfo = \
  182. case $$AM_UPDATE_INFO_DIR in \
  183. n|no|NO) false;; \
  184. *) (install-info --version) >/dev/null 2>&1;; \
  185. esac
  186. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  187. # Read a list of newline-separated strings from the standard input,
  188. # and print each of them once, without duplicates. Input order is
  189. # *not* preserved.
  190. am__uniquify_input = $(AWK) '\
  191. BEGIN { nonempty = 0; } \
  192. { items[$$0] = 1; nonempty = 1; } \
  193. END { if (nonempty) { for (i in items) print i; }; } \
  194. '
  195. # Make sure the list of sources is unique. This is necessary because,
  196. # e.g., the same source file might be shared among _SOURCES variables
  197. # for different programs/libraries.
  198. am__define_uniq_tagged_files = \
  199. list='$(am__tagged_files)'; \
  200. unique=`for i in $$list; do \
  201. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  202. done | $(am__uniquify_input)`
  203. ETAGS = etags
  204. CTAGS = ctags
  205. am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
  206. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  207. ACLOCAL = @ACLOCAL@
  208. AMTAR = @AMTAR@
  209. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  210. AR = @AR@
  211. AUTOCONF = @AUTOCONF@
  212. AUTOHEADER = @AUTOHEADER@
  213. AUTOMAKE = @AUTOMAKE@
  214. AWK = @AWK@
  215. CC = @CC@
  216. CCDEPMODE = @CCDEPMODE@
  217. CFLAGS = @CFLAGS@
  218. CPP = @CPP@
  219. CPPFLAGS = @CPPFLAGS@
  220. CYGPATH_W = @CYGPATH_W@
  221. DEFS = @DEFS@
  222. DEPDIR = @DEPDIR@
  223. DLLTOOL = @DLLTOOL@
  224. DSYMUTIL = @DSYMUTIL@
  225. DUMPBIN = @DUMPBIN@
  226. ECHO_C = @ECHO_C@
  227. ECHO_N = @ECHO_N@
  228. ECHO_T = @ECHO_T@
  229. EGREP = @EGREP@
  230. EXEEXT = @EXEEXT@
  231. FGREP = @FGREP@
  232. GREP = @GREP@
  233. INSTALL = @INSTALL@
  234. INSTALL_DATA = @INSTALL_DATA@
  235. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  236. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  237. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  238. JOSE_CFLAGS = @JOSE_CFLAGS@
  239. LD = @LD@
  240. LDFLAGS = @LDFLAGS@
  241. LIBOBJS = @LIBOBJS@
  242. LIBS = @LIBS@
  243. LIBTOOL = @LIBTOOL@
  244. LIPO = @LIPO@
  245. LN_S = @LN_S@
  246. LTLIBOBJS = @LTLIBOBJS@
  247. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  248. MAKEINFO = @MAKEINFO@
  249. MANIFEST_TOOL = @MANIFEST_TOOL@
  250. MKDIR_P = @MKDIR_P@
  251. NM = @NM@
  252. NMEDIT = @NMEDIT@
  253. OBJDUMP = @OBJDUMP@
  254. OBJEXT = @OBJEXT@
  255. OPENMP_CFLAGS = @OPENMP_CFLAGS@
  256. OTOOL = @OTOOL@
  257. OTOOL64 = @OTOOL64@
  258. PACKAGE = @PACKAGE@
  259. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  260. PACKAGE_NAME = @PACKAGE_NAME@
  261. PACKAGE_STRING = @PACKAGE_STRING@
  262. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  263. PACKAGE_URL = @PACKAGE_URL@
  264. PACKAGE_VERSION = @PACKAGE_VERSION@
  265. PATH_SEPARATOR = @PATH_SEPARATOR@
  266. PKG_CONFIG = @PKG_CONFIG@
  267. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  268. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  269. RANLIB = @RANLIB@
  270. SED = @SED@
  271. SET_MAKE = @SET_MAKE@
  272. SHELL = @SHELL@
  273. STRIP = @STRIP@
  274. VERSION = @VERSION@
  275. abs_builddir = @abs_builddir@
  276. abs_srcdir = @abs_srcdir@
  277. abs_top_builddir = @abs_top_builddir@
  278. abs_top_srcdir = @abs_top_srcdir@
  279. ac_ct_AR = @ac_ct_AR@
  280. ac_ct_CC = @ac_ct_CC@
  281. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  282. am__include = @am__include@
  283. am__leading_dot = @am__leading_dot@
  284. am__quote = @am__quote@
  285. am__tar = @am__tar@
  286. am__untar = @am__untar@
  287. bindir = @bindir@
  288. build = @build@
  289. build_alias = @build_alias@
  290. build_cpu = @build_cpu@
  291. build_os = @build_os@
  292. build_vendor = @build_vendor@
  293. builddir = @builddir@
  294. datadir = @datadir@
  295. datarootdir = @datarootdir@
  296. docdir = @docdir@
  297. dvidir = @dvidir@
  298. exec_prefix = @exec_prefix@
  299. host = @host@
  300. host_alias = @host_alias@
  301. host_cpu = @host_cpu@
  302. host_os = @host_os@
  303. host_vendor = @host_vendor@
  304. htmldir = @htmldir@
  305. includedir = @includedir@
  306. infodir = @infodir@
  307. install_sh = @install_sh@
  308. jansson_CFLAGS = @jansson_CFLAGS@
  309. jansson_LIBS = @jansson_LIBS@
  310. libcrypto_CFLAGS = @libcrypto_CFLAGS@
  311. libcrypto_LIBS = @libcrypto_LIBS@
  312. libdir = @libdir@
  313. libexecdir = @libexecdir@
  314. localedir = @localedir@
  315. localstatedir = @localstatedir@
  316. mandir = @mandir@
  317. mkdir_p = @mkdir_p@
  318. oldincludedir = @oldincludedir@
  319. pdfdir = @pdfdir@
  320. prefix = @prefix@
  321. program_transform_name = @program_transform_name@
  322. psdir = @psdir@
  323. sbindir = @sbindir@
  324. sharedstatedir = @sharedstatedir@
  325. srcdir = @srcdir@
  326. sysconfdir = @sysconfdir@
  327. target = @target@
  328. target_alias = @target_alias@
  329. target_cpu = @target_cpu@
  330. target_os = @target_os@
  331. target_vendor = @target_vendor@
  332. top_build_prefix = @top_build_prefix@
  333. top_builddir = @top_builddir@
  334. top_srcdir = @top_srcdir@
  335. zlib_CFLAGS = @zlib_CFLAGS@
  336. zlib_LIBS = @zlib_LIBS@
  337. AM_CFLAGS = \
  338. @libcrypto_CFLAGS@ \
  339. @jansson_CFLAGS@ \
  340. @zlib_CFLAGS@ \
  341. @JOSE_CFLAGS@ \
  342. -I $(top_srcdir) \
  343. -pthread
  344. lib_LTLIBRARIES = libjose.la
  345. libjose_la_LDFLAGS = $(LDFLAGS) $(am__append_1) $(am__append_2)
  346. libjose_la_LIBADD = \
  347. @libcrypto_LIBS@ \
  348. @jansson_LIBS@ \
  349. @zlib_LIBS@
  350. libjose_la_SOURCES = \
  351. misc.c misc.h \
  352. cfg.c \
  353. io.c \
  354. b64.c \
  355. hsh.c hsh.h \
  356. hooks.c hooks.h \
  357. jwk.c \
  358. jws.c \
  359. jwe.c \
  360. zlib/deflate.c \
  361. openssl/aescbch.c \
  362. openssl/aesgcm.c \
  363. openssl/aesgcmkw.c \
  364. openssl/aeskw.c \
  365. openssl/compat.c openssl/compat.h \
  366. openssl/dir.c \
  367. openssl/ec.c \
  368. openssl/ecdh.c \
  369. openssl/ecdhes.c \
  370. openssl/ecmr.c \
  371. openssl/ecdsa.c \
  372. openssl/hash.c \
  373. openssl/hmac.c \
  374. openssl/jwk.c \
  375. openssl/lock.c \
  376. openssl/misc.c openssl/misc.h \
  377. openssl/oct.c \
  378. openssl/pbes2.c \
  379. openssl/rsa.c \
  380. openssl/rsaes.c \
  381. openssl/rsassa.c
  382. EXTRA_DIST = libjose.map
  383. all: all-am
  384. .SUFFIXES:
  385. .SUFFIXES: .c .lo .o .obj
  386. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  387. @for dep in $?; do \
  388. case '$(am__configure_deps)' in \
  389. *$$dep*) \
  390. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  391. && { if test -f $@; then exit 0; else break; fi; }; \
  392. exit 1;; \
  393. esac; \
  394. done; \
  395. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \
  396. $(am__cd) $(top_srcdir) && \
  397. $(AUTOMAKE) --foreign lib/Makefile
  398. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  399. @case '$?' in \
  400. *config.status*) \
  401. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  402. *) \
  403. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  404. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  405. esac;
  406. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  407. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  408. $(top_srcdir)/configure: $(am__configure_deps)
  409. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  410. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  411. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  412. $(am__aclocal_m4_deps):
  413. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  414. @$(NORMAL_INSTALL)
  415. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  416. list2=; for p in $$list; do \
  417. if test -f $$p; then \
  418. list2="$$list2 $$p"; \
  419. else :; fi; \
  420. done; \
  421. test -z "$$list2" || { \
  422. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  423. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  424. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  425. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  426. }
  427. uninstall-libLTLIBRARIES:
  428. @$(NORMAL_UNINSTALL)
  429. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  430. for p in $$list; do \
  431. $(am__strip_dir) \
  432. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  433. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  434. done
  435. clean-libLTLIBRARIES:
  436. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  437. @list='$(lib_LTLIBRARIES)'; \
  438. locs=`for p in $$list; do echo $$p; done | \
  439. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  440. sort -u`; \
  441. test -z "$$locs" || { \
  442. echo rm -f $${locs}; \
  443. rm -f $${locs}; \
  444. }
  445. zlib/$(am__dirstamp):
  446. @$(MKDIR_P) zlib
  447. @: > zlib/$(am__dirstamp)
  448. zlib/$(DEPDIR)/$(am__dirstamp):
  449. @$(MKDIR_P) zlib/$(DEPDIR)
  450. @: > zlib/$(DEPDIR)/$(am__dirstamp)
  451. zlib/deflate.lo: zlib/$(am__dirstamp) zlib/$(DEPDIR)/$(am__dirstamp)
  452. openssl/$(am__dirstamp):
  453. @$(MKDIR_P) openssl
  454. @: > openssl/$(am__dirstamp)
  455. openssl/$(DEPDIR)/$(am__dirstamp):
  456. @$(MKDIR_P) openssl/$(DEPDIR)
  457. @: > openssl/$(DEPDIR)/$(am__dirstamp)
  458. openssl/aescbch.lo: openssl/$(am__dirstamp) \
  459. openssl/$(DEPDIR)/$(am__dirstamp)
  460. openssl/aesgcm.lo: openssl/$(am__dirstamp) \
  461. openssl/$(DEPDIR)/$(am__dirstamp)
  462. openssl/aesgcmkw.lo: openssl/$(am__dirstamp) \
  463. openssl/$(DEPDIR)/$(am__dirstamp)
  464. openssl/aeskw.lo: openssl/$(am__dirstamp) \
  465. openssl/$(DEPDIR)/$(am__dirstamp)
  466. openssl/compat.lo: openssl/$(am__dirstamp) \
  467. openssl/$(DEPDIR)/$(am__dirstamp)
  468. openssl/dir.lo: openssl/$(am__dirstamp) \
  469. openssl/$(DEPDIR)/$(am__dirstamp)
  470. openssl/ec.lo: openssl/$(am__dirstamp) \
  471. openssl/$(DEPDIR)/$(am__dirstamp)
  472. openssl/ecdh.lo: openssl/$(am__dirstamp) \
  473. openssl/$(DEPDIR)/$(am__dirstamp)
  474. openssl/ecdhes.lo: openssl/$(am__dirstamp) \
  475. openssl/$(DEPDIR)/$(am__dirstamp)
  476. openssl/ecmr.lo: openssl/$(am__dirstamp) \
  477. openssl/$(DEPDIR)/$(am__dirstamp)
  478. openssl/ecdsa.lo: openssl/$(am__dirstamp) \
  479. openssl/$(DEPDIR)/$(am__dirstamp)
  480. openssl/hash.lo: openssl/$(am__dirstamp) \
  481. openssl/$(DEPDIR)/$(am__dirstamp)
  482. openssl/hmac.lo: openssl/$(am__dirstamp) \
  483. openssl/$(DEPDIR)/$(am__dirstamp)
  484. openssl/jwk.lo: openssl/$(am__dirstamp) \
  485. openssl/$(DEPDIR)/$(am__dirstamp)
  486. openssl/lock.lo: openssl/$(am__dirstamp) \
  487. openssl/$(DEPDIR)/$(am__dirstamp)
  488. openssl/misc.lo: openssl/$(am__dirstamp) \
  489. openssl/$(DEPDIR)/$(am__dirstamp)
  490. openssl/oct.lo: openssl/$(am__dirstamp) \
  491. openssl/$(DEPDIR)/$(am__dirstamp)
  492. openssl/pbes2.lo: openssl/$(am__dirstamp) \
  493. openssl/$(DEPDIR)/$(am__dirstamp)
  494. openssl/rsa.lo: openssl/$(am__dirstamp) \
  495. openssl/$(DEPDIR)/$(am__dirstamp)
  496. openssl/rsaes.lo: openssl/$(am__dirstamp) \
  497. openssl/$(DEPDIR)/$(am__dirstamp)
  498. openssl/rsassa.lo: openssl/$(am__dirstamp) \
  499. openssl/$(DEPDIR)/$(am__dirstamp)
  500. libjose.la: $(libjose_la_OBJECTS) $(libjose_la_DEPENDENCIES) $(EXTRA_libjose_la_DEPENDENCIES)
  501. $(AM_V_CCLD)$(libjose_la_LINK) -rpath $(libdir) $(libjose_la_OBJECTS) $(libjose_la_LIBADD) $(LIBS)
  502. mostlyclean-compile:
  503. -rm -f *.$(OBJEXT)
  504. -rm -f openssl/*.$(OBJEXT)
  505. -rm -f openssl/*.lo
  506. -rm -f zlib/*.$(OBJEXT)
  507. -rm -f zlib/*.lo
  508. distclean-compile:
  509. -rm -f *.tab.c
  510. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/b64.Plo@am__quote@
  511. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cfg.Plo@am__quote@
  512. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hooks.Plo@am__quote@
  513. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hsh.Plo@am__quote@
  514. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io.Plo@am__quote@
  515. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jwe.Plo@am__quote@
  516. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jwk.Plo@am__quote@
  517. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jws.Plo@am__quote@
  518. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/misc.Plo@am__quote@
  519. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/aescbch.Plo@am__quote@
  520. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/aesgcm.Plo@am__quote@
  521. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/aesgcmkw.Plo@am__quote@
  522. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/aeskw.Plo@am__quote@
  523. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/compat.Plo@am__quote@
  524. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/dir.Plo@am__quote@
  525. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/ec.Plo@am__quote@
  526. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/ecdh.Plo@am__quote@
  527. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/ecdhes.Plo@am__quote@
  528. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/ecdsa.Plo@am__quote@
  529. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/ecmr.Plo@am__quote@
  530. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/hash.Plo@am__quote@
  531. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/hmac.Plo@am__quote@
  532. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/jwk.Plo@am__quote@
  533. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/lock.Plo@am__quote@
  534. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/misc.Plo@am__quote@
  535. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/oct.Plo@am__quote@
  536. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/pbes2.Plo@am__quote@
  537. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/rsa.Plo@am__quote@
  538. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/rsaes.Plo@am__quote@
  539. @AMDEP_TRUE@@am__include@ @am__quote@openssl/$(DEPDIR)/rsassa.Plo@am__quote@
  540. @AMDEP_TRUE@@am__include@ @am__quote@zlib/$(DEPDIR)/deflate.Plo@am__quote@
  541. .c.o:
  542. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  543. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  544. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  545. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  546. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  547. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  548. .c.obj:
  549. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  550. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  551. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  552. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  553. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  554. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  555. .c.lo:
  556. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  557. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  558. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  559. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  560. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  561. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  562. mostlyclean-libtool:
  563. -rm -f *.lo
  564. clean-libtool:
  565. -rm -rf .libs _libs
  566. -rm -rf openssl/.libs openssl/_libs
  567. -rm -rf zlib/.libs zlib/_libs
  568. ID: $(am__tagged_files)
  569. $(am__define_uniq_tagged_files); mkid -fID $$unique
  570. tags: tags-am
  571. TAGS: tags
  572. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  573. set x; \
  574. here=`pwd`; \
  575. $(am__define_uniq_tagged_files); \
  576. shift; \
  577. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  578. test -n "$$unique" || unique=$$empty_fix; \
  579. if test $$# -gt 0; then \
  580. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  581. "$$@" $$unique; \
  582. else \
  583. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  584. $$unique; \
  585. fi; \
  586. fi
  587. ctags: ctags-am
  588. CTAGS: ctags
  589. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  590. $(am__define_uniq_tagged_files); \
  591. test -z "$(CTAGS_ARGS)$$unique" \
  592. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  593. $$unique
  594. GTAGS:
  595. here=`$(am__cd) $(top_builddir) && pwd` \
  596. && $(am__cd) $(top_srcdir) \
  597. && gtags -i $(GTAGS_ARGS) "$$here"
  598. cscopelist: cscopelist-am
  599. cscopelist-am: $(am__tagged_files)
  600. list='$(am__tagged_files)'; \
  601. case "$(srcdir)" in \
  602. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  603. *) sdir=$(subdir)/$(srcdir) ;; \
  604. esac; \
  605. for i in $$list; do \
  606. if test -f "$$i"; then \
  607. echo "$(subdir)/$$i"; \
  608. else \
  609. echo "$$sdir/$$i"; \
  610. fi; \
  611. done >> $(top_builddir)/cscope.files
  612. distclean-tags:
  613. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  614. distdir: $(DISTFILES)
  615. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  616. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  617. list='$(DISTFILES)'; \
  618. dist_files=`for file in $$list; do echo $$file; done | \
  619. sed -e "s|^$$srcdirstrip/||;t" \
  620. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  621. case $$dist_files in \
  622. */*) $(MKDIR_P) `echo "$$dist_files" | \
  623. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  624. sort -u` ;; \
  625. esac; \
  626. for file in $$dist_files; do \
  627. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  628. if test -d $$d/$$file; then \
  629. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  630. if test -d "$(distdir)/$$file"; then \
  631. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  632. fi; \
  633. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  634. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  635. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  636. fi; \
  637. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  638. else \
  639. test -f "$(distdir)/$$file" \
  640. || cp -p $$d/$$file "$(distdir)/$$file" \
  641. || exit 1; \
  642. fi; \
  643. done
  644. check-am: all-am
  645. check: check-am
  646. all-am: Makefile $(LTLIBRARIES)
  647. installdirs:
  648. for dir in "$(DESTDIR)$(libdir)"; do \
  649. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  650. done
  651. install: install-am
  652. install-exec: install-exec-am
  653. install-data: install-data-am
  654. uninstall: uninstall-am
  655. install-am: all-am
  656. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  657. installcheck: installcheck-am
  658. install-strip:
  659. if test -z '$(STRIP)'; then \
  660. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  661. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  662. install; \
  663. else \
  664. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  665. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  666. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  667. fi
  668. mostlyclean-generic:
  669. clean-generic:
  670. distclean-generic:
  671. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  672. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  673. -rm -f openssl/$(DEPDIR)/$(am__dirstamp)
  674. -rm -f openssl/$(am__dirstamp)
  675. -rm -f zlib/$(DEPDIR)/$(am__dirstamp)
  676. -rm -f zlib/$(am__dirstamp)
  677. maintainer-clean-generic:
  678. @echo "This command is intended for maintainers to use"
  679. @echo "it deletes files that may require special tools to rebuild."
  680. clean: clean-am
  681. clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  682. mostlyclean-am
  683. distclean: distclean-am
  684. -rm -rf ./$(DEPDIR) openssl/$(DEPDIR) zlib/$(DEPDIR)
  685. -rm -f Makefile
  686. distclean-am: clean-am distclean-compile distclean-generic \
  687. distclean-tags
  688. dvi: dvi-am
  689. dvi-am:
  690. html: html-am
  691. html-am:
  692. info: info-am
  693. info-am:
  694. install-data-am:
  695. install-dvi: install-dvi-am
  696. install-dvi-am:
  697. install-exec-am: install-libLTLIBRARIES
  698. install-html: install-html-am
  699. install-html-am:
  700. install-info: install-info-am
  701. install-info-am:
  702. install-man:
  703. install-pdf: install-pdf-am
  704. install-pdf-am:
  705. install-ps: install-ps-am
  706. install-ps-am:
  707. installcheck-am:
  708. maintainer-clean: maintainer-clean-am
  709. -rm -rf ./$(DEPDIR) openssl/$(DEPDIR) zlib/$(DEPDIR)
  710. -rm -f Makefile
  711. maintainer-clean-am: distclean-am maintainer-clean-generic
  712. mostlyclean: mostlyclean-am
  713. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  714. mostlyclean-libtool
  715. pdf: pdf-am
  716. pdf-am:
  717. ps: ps-am
  718. ps-am:
  719. uninstall-am: uninstall-libLTLIBRARIES
  720. .MAKE: install-am install-strip
  721. .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
  722. clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
  723. ctags-am distclean distclean-compile distclean-generic \
  724. distclean-libtool distclean-tags distdir dvi dvi-am html \
  725. html-am info info-am install install-am install-data \
  726. install-data-am install-dvi install-dvi-am install-exec \
  727. install-exec-am install-html install-html-am install-info \
  728. install-info-am install-libLTLIBRARIES install-man install-pdf \
  729. install-pdf-am install-ps install-ps-am install-strip \
  730. installcheck installcheck-am installdirs maintainer-clean \
  731. maintainer-clean-generic mostlyclean mostlyclean-compile \
  732. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  733. tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES
  734. .PRECIOUS: Makefile
  735. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  736. # Otherwise a system limit (for SysV at least) may be exceeded.
  737. .NOEXPORT: