Makefile.in 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  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. @USE_WINDOWS_TRUE@am__append_1 = -lws2_32
  87. subdir = src/libpttls
  88. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  89. am__aclocal_m4_deps = $(top_srcdir)/m4/config/libtool.m4 \
  90. $(top_srcdir)/m4/config/ltoptions.m4 \
  91. $(top_srcdir)/m4/config/ltsugar.m4 \
  92. $(top_srcdir)/m4/config/ltversion.m4 \
  93. $(top_srcdir)/m4/config/lt~obsolete.m4 \
  94. $(top_srcdir)/m4/macros/split-package-version.m4 \
  95. $(top_srcdir)/m4/macros/with.m4 \
  96. $(top_srcdir)/m4/macros/enable-disable.m4 \
  97. $(top_srcdir)/m4/macros/add-plugin.m4 \
  98. $(top_srcdir)/configure.ac
  99. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  100. $(ACLOCAL_M4)
  101. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  102. mkinstalldirs = $(install_sh) -d
  103. CONFIG_HEADER = $(top_builddir)/config.h
  104. CONFIG_CLEAN_FILES =
  105. CONFIG_CLEAN_VPATH_FILES =
  106. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  107. am__vpath_adj = case $$p in \
  108. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  109. *) f=$$p;; \
  110. esac;
  111. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  112. am__install_max = 40
  113. am__nobase_strip_setup = \
  114. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  115. am__nobase_strip = \
  116. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  117. am__nobase_list = $(am__nobase_strip_setup); \
  118. for p in $$list; do echo "$$p $$p"; done | \
  119. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  120. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  121. if (++n[$$2] == $(am__install_max)) \
  122. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  123. END { for (dir in files) print dir, files[dir] }'
  124. am__base_list = \
  125. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  126. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  127. am__uninstall_files_from_dir = { \
  128. test -z "$$files" \
  129. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  130. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  131. $(am__cd) "$$dir" && rm -f $$files; }; \
  132. }
  133. am__installdirs = "$(DESTDIR)$(ipseclibdir)"
  134. LTLIBRARIES = $(ipseclib_LTLIBRARIES)
  135. am__DEPENDENCIES_1 =
  136. libpttls_la_DEPENDENCIES = \
  137. $(top_builddir)/src/libstrongswan/libstrongswan.la \
  138. $(top_builddir)/src/libtls/libtls.la $(am__DEPENDENCIES_1)
  139. am__dirstamp = $(am__leading_dot)dirstamp
  140. am_libpttls_la_OBJECTS = pt_tls.lo pt_tls_client.lo pt_tls_server.lo \
  141. pt_tls_dispatcher.lo sasl/sasl_plain/sasl_plain.lo \
  142. sasl/sasl_mechanism.lo
  143. libpttls_la_OBJECTS = $(am_libpttls_la_OBJECTS)
  144. AM_V_lt = $(am__v_lt_@AM_V@)
  145. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  146. am__v_lt_0 = --silent
  147. am__v_lt_1 =
  148. AM_V_P = $(am__v_P_@AM_V@)
  149. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  150. am__v_P_0 = false
  151. am__v_P_1 = :
  152. AM_V_GEN = $(am__v_GEN_@AM_V@)
  153. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  154. am__v_GEN_0 = @echo " GEN " $@;
  155. am__v_GEN_1 =
  156. AM_V_at = $(am__v_at_@AM_V@)
  157. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  158. am__v_at_0 = @
  159. am__v_at_1 =
  160. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  161. depcomp = $(SHELL) $(top_srcdir)/depcomp
  162. am__depfiles_maybe = depfiles
  163. am__mv = mv -f
  164. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  165. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  166. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  167. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  168. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  169. $(AM_CFLAGS) $(CFLAGS)
  170. AM_V_CC = $(am__v_CC_@AM_V@)
  171. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  172. am__v_CC_0 = @echo " CC " $@;
  173. am__v_CC_1 =
  174. CCLD = $(CC)
  175. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  176. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  177. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  178. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  179. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  180. am__v_CCLD_0 = @echo " CCLD " $@;
  181. am__v_CCLD_1 =
  182. SOURCES = $(libpttls_la_SOURCES)
  183. DIST_SOURCES = $(libpttls_la_SOURCES)
  184. am__can_run_installinfo = \
  185. case $$AM_UPDATE_INFO_DIR in \
  186. n|no|NO) false;; \
  187. *) (install-info --version) >/dev/null 2>&1;; \
  188. esac
  189. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  190. # Read a list of newline-separated strings from the standard input,
  191. # and print each of them once, without duplicates. Input order is
  192. # *not* preserved.
  193. am__uniquify_input = $(AWK) '\
  194. BEGIN { nonempty = 0; } \
  195. { items[$$0] = 1; nonempty = 1; } \
  196. END { if (nonempty) { for (i in items) print i; }; } \
  197. '
  198. # Make sure the list of sources is unique. This is necessary because,
  199. # e.g., the same source file might be shared among _SOURCES variables
  200. # for different programs/libraries.
  201. am__define_uniq_tagged_files = \
  202. list='$(am__tagged_files)'; \
  203. unique=`for i in $$list; do \
  204. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  205. done | $(am__uniquify_input)`
  206. ETAGS = etags
  207. CTAGS = ctags
  208. am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
  209. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  210. ACLOCAL = @ACLOCAL@
  211. ALLOCA = @ALLOCA@
  212. AMTAR = @AMTAR@
  213. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  214. AR = @AR@
  215. ATOMICLIB = @ATOMICLIB@
  216. AUTOCONF = @AUTOCONF@
  217. AUTOHEADER = @AUTOHEADER@
  218. AUTOMAKE = @AUTOMAKE@
  219. AWK = @AWK@
  220. BFDLIB = @BFDLIB@
  221. BTLIB = @BTLIB@
  222. CC = @CC@
  223. CCDEPMODE = @CCDEPMODE@
  224. CFLAGS = @CFLAGS@
  225. COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
  226. COVERAGE_LDFLAGS = @COVERAGE_LDFLAGS@
  227. CPP = @CPP@
  228. CPPFLAGS = @CPPFLAGS@
  229. CYGPATH_W = @CYGPATH_W@
  230. DEFS = @DEFS@
  231. DEPDIR = @DEPDIR@
  232. DLLIB = @DLLIB@
  233. DLLTOOL = @DLLTOOL@
  234. DSYMUTIL = @DSYMUTIL@
  235. DUMPBIN = @DUMPBIN@
  236. EASY_INSTALL = @EASY_INSTALL@
  237. ECHO_C = @ECHO_C@
  238. ECHO_N = @ECHO_N@
  239. ECHO_T = @ECHO_T@
  240. EGREP = @EGREP@
  241. EXEEXT = @EXEEXT@
  242. FGREP = @FGREP@
  243. FUZZING_CFLAGS = @FUZZING_CFLAGS@
  244. FUZZING_LDFLAGS = @FUZZING_LDFLAGS@
  245. GEM = @GEM@
  246. GENHTML = @GENHTML@
  247. GPERF = @GPERF@
  248. GPERF_LEN_TYPE = @GPERF_LEN_TYPE@
  249. GPRBUILD = @GPRBUILD@
  250. GREP = @GREP@
  251. INSTALL = @INSTALL@
  252. INSTALL_DATA = @INSTALL_DATA@
  253. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  254. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  255. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  256. LCOV = @LCOV@
  257. LD = @LD@
  258. LDFLAGS = @LDFLAGS@
  259. LEX = @LEX@
  260. LEXLIB = @LEXLIB@
  261. LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
  262. LIBOBJS = @LIBOBJS@
  263. LIBS = @LIBS@
  264. LIBTOOL = @LIBTOOL@
  265. LIPO = @LIPO@
  266. LN_S = @LN_S@
  267. LTLIBOBJS = @LTLIBOBJS@
  268. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  269. MAKEINFO = @MAKEINFO@
  270. MANIFEST_TOOL = @MANIFEST_TOOL@
  271. MKDIR_P = @MKDIR_P@
  272. MYSQLCFLAG = @MYSQLCFLAG@
  273. MYSQLCONFIG = @MYSQLCONFIG@
  274. MYSQLLIB = @MYSQLLIB@
  275. NM = @NM@
  276. NMEDIT = @NMEDIT@
  277. OBJDUMP = @OBJDUMP@
  278. OBJEXT = @OBJEXT@
  279. OPENSSL_LIB = @OPENSSL_LIB@
  280. OTOOL = @OTOOL@
  281. OTOOL64 = @OTOOL64@
  282. PACKAGE = @PACKAGE@
  283. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  284. PACKAGE_NAME = @PACKAGE_NAME@
  285. PACKAGE_STRING = @PACKAGE_STRING@
  286. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  287. PACKAGE_URL = @PACKAGE_URL@
  288. PACKAGE_VERSION = @PACKAGE_VERSION@
  289. PACKAGE_VERSION_BUILD = @PACKAGE_VERSION_BUILD@
  290. PACKAGE_VERSION_MAJOR = @PACKAGE_VERSION_MAJOR@
  291. PACKAGE_VERSION_MINOR = @PACKAGE_VERSION_MINOR@
  292. PACKAGE_VERSION_REVIEW = @PACKAGE_VERSION_REVIEW@
  293. PATH_SEPARATOR = @PATH_SEPARATOR@
  294. PERL = @PERL@
  295. PKG_CONFIG = @PKG_CONFIG@
  296. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  297. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  298. PLUGIN_CFLAGS = @PLUGIN_CFLAGS@
  299. PTHREADLIB = @PTHREADLIB@
  300. PYTHON = @PYTHON@
  301. PYTHONEGGINSTALLDIR = @PYTHONEGGINSTALLDIR@
  302. PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
  303. PYTHON_PACKAGE_VERSION = @PYTHON_PACKAGE_VERSION@
  304. PYTHON_PLATFORM = @PYTHON_PLATFORM@
  305. PYTHON_PREFIX = @PYTHON_PREFIX@
  306. PYTHON_VERSION = @PYTHON_VERSION@
  307. PY_TEST = @PY_TEST@
  308. RANLIB = @RANLIB@
  309. RTLIB = @RTLIB@
  310. RUBYGEMDIR = @RUBYGEMDIR@
  311. SED = @SED@
  312. SET_MAKE = @SET_MAKE@
  313. SHELL = @SHELL@
  314. SOCKLIB = @SOCKLIB@
  315. STRIP = @STRIP@
  316. UNWINDLIB = @UNWINDLIB@
  317. VERSION = @VERSION@
  318. WOLFSSL_LIB = @WOLFSSL_LIB@
  319. YACC = @YACC@
  320. YFLAGS = @YFLAGS@
  321. abs_builddir = @abs_builddir@
  322. abs_srcdir = @abs_srcdir@
  323. abs_top_builddir = @abs_top_builddir@
  324. abs_top_srcdir = @abs_top_srcdir@
  325. ac_ct_AR = @ac_ct_AR@
  326. ac_ct_CC = @ac_ct_CC@
  327. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  328. aikgen_plugins = @aikgen_plugins@
  329. am__include = @am__include@
  330. am__leading_dot = @am__leading_dot@
  331. am__quote = @am__quote@
  332. am__tar = @am__tar@
  333. am__untar = @am__untar@
  334. attest_plugins = @attest_plugins@
  335. bindir = @bindir@
  336. botan_CFLAGS = @botan_CFLAGS@
  337. botan_LIBS = @botan_LIBS@
  338. build = @build@
  339. build_alias = @build_alias@
  340. build_cpu = @build_cpu@
  341. build_os = @build_os@
  342. build_vendor = @build_vendor@
  343. builddir = @builddir@
  344. c_plugins = @c_plugins@
  345. charon_natt_port = @charon_natt_port@
  346. charon_plugins = @charon_plugins@
  347. charon_udp_port = @charon_udp_port@
  348. clearsilver_LIBS = @clearsilver_LIBS@
  349. cmd_plugins = @cmd_plugins@
  350. datadir = @datadir@
  351. datarootdir = @datarootdir@
  352. dev_headers = @dev_headers@
  353. docdir = @docdir@
  354. dvidir = @dvidir@
  355. exec_prefix = @exec_prefix@
  356. fips_mode = @fips_mode@
  357. fuzz_plugins = @fuzz_plugins@
  358. host = @host@
  359. host_alias = @host_alias@
  360. host_cpu = @host_cpu@
  361. host_os = @host_os@
  362. host_vendor = @host_vendor@
  363. htmldir = @htmldir@
  364. imcvdir = @imcvdir@
  365. includedir = @includedir@
  366. infodir = @infodir@
  367. install_sh = @install_sh@
  368. ipsec_script = @ipsec_script@
  369. ipsec_script_upper = @ipsec_script_upper@
  370. ipsecdir = @ipsecdir@
  371. ipsecgroup = @ipsecgroup@
  372. ipseclibdir = @ipseclibdir@
  373. ipsecuser = @ipsecuser@
  374. json_CFLAGS = @json_CFLAGS@
  375. json_LIBS = @json_LIBS@
  376. libdir = @libdir@
  377. libexecdir = @libexecdir@
  378. libfuzzer = @libfuzzer@
  379. libiptc_CFLAGS = @libiptc_CFLAGS@
  380. libiptc_LIBS = @libiptc_LIBS@
  381. linux_headers = @linux_headers@
  382. localedir = @localedir@
  383. localstatedir = @localstatedir@
  384. manager_plugins = @manager_plugins@
  385. mandir = @mandir@
  386. medsrv_plugins = @medsrv_plugins@
  387. mkdir_p = @mkdir_p@
  388. nm_CFLAGS = @nm_CFLAGS@
  389. nm_LIBS = @nm_LIBS@
  390. nm_ca_dir = @nm_ca_dir@
  391. nm_plugins = @nm_plugins@
  392. oldincludedir = @oldincludedir@
  393. p_plugins = @p_plugins@
  394. pcsclite_CFLAGS = @pcsclite_CFLAGS@
  395. pcsclite_LIBS = @pcsclite_LIBS@
  396. pdfdir = @pdfdir@
  397. piddir = @piddir@
  398. pkgpyexecdir = @pkgpyexecdir@
  399. pkgpythondir = @pkgpythondir@
  400. pki_plugins = @pki_plugins@
  401. plugindir = @plugindir@
  402. pool_plugins = @pool_plugins@
  403. prefix = @prefix@
  404. program_transform_name = @program_transform_name@
  405. psdir = @psdir@
  406. pyexecdir = @pyexecdir@
  407. pythondir = @pythondir@
  408. random_device = @random_device@
  409. resolv_conf = @resolv_conf@
  410. routing_table = @routing_table@
  411. routing_table_prio = @routing_table_prio@
  412. runstatedir = @runstatedir@
  413. s_plugins = @s_plugins@
  414. sbindir = @sbindir@
  415. scepclient_plugins = @scepclient_plugins@
  416. scripts_plugins = @scripts_plugins@
  417. sharedstatedir = @sharedstatedir@
  418. soup_CFLAGS = @soup_CFLAGS@
  419. soup_LIBS = @soup_LIBS@
  420. srcdir = @srcdir@
  421. starter_plugins = @starter_plugins@
  422. strongswan_conf = @strongswan_conf@
  423. strongswan_options = @strongswan_options@
  424. swanctldir = @swanctldir@
  425. sysconfdir = @sysconfdir@
  426. systemd_CFLAGS = @systemd_CFLAGS@
  427. systemd_LIBS = @systemd_LIBS@
  428. systemd_daemon_CFLAGS = @systemd_daemon_CFLAGS@
  429. systemd_daemon_LIBS = @systemd_daemon_LIBS@
  430. systemd_journal_CFLAGS = @systemd_journal_CFLAGS@
  431. systemd_journal_LIBS = @systemd_journal_LIBS@
  432. systemdsystemunitdir = @systemdsystemunitdir@
  433. t_plugins = @t_plugins@
  434. target_alias = @target_alias@
  435. top_build_prefix = @top_build_prefix@
  436. top_builddir = @top_builddir@
  437. top_srcdir = @top_srcdir@
  438. tss2_CFLAGS = @tss2_CFLAGS@
  439. tss2_LIBS = @tss2_LIBS@
  440. tss2_esys_CFLAGS = @tss2_esys_CFLAGS@
  441. tss2_esys_LIBS = @tss2_esys_LIBS@
  442. tss2_socket_CFLAGS = @tss2_socket_CFLAGS@
  443. tss2_socket_LIBS = @tss2_socket_LIBS@
  444. tss2_sys_CFLAGS = @tss2_sys_CFLAGS@
  445. tss2_sys_LIBS = @tss2_sys_LIBS@
  446. tss2_tabrmd_CFLAGS = @tss2_tabrmd_CFLAGS@
  447. tss2_tabrmd_LIBS = @tss2_tabrmd_LIBS@
  448. urandom_device = @urandom_device@
  449. xml_CFLAGS = @xml_CFLAGS@
  450. xml_LIBS = @xml_LIBS@
  451. AM_CPPFLAGS = \
  452. -I$(top_srcdir)/src/libstrongswan \
  453. -I$(top_srcdir)/src/libtls \
  454. -I$(top_srcdir)/src/libtncif \
  455. -I$(top_srcdir)/src/libtnccs
  456. AM_LDFLAGS = \
  457. -no-undefined
  458. ipseclib_LTLIBRARIES = libpttls.la
  459. libpttls_la_LIBADD = \
  460. $(top_builddir)/src/libstrongswan/libstrongswan.la \
  461. $(top_builddir)/src/libtls/libtls.la $(am__append_1)
  462. libpttls_la_SOURCES = pt_tls.c pt_tls.h \
  463. pt_tls_client.c pt_tls_client.h \
  464. pt_tls_server.c pt_tls_server.h \
  465. pt_tls_dispatcher.c pt_tls_dispatcher.h \
  466. sasl/sasl_plain/sasl_plain.c sasl/sasl_plain/sasl_plain.h \
  467. sasl/sasl_mechanism.c sasl/sasl_mechanism.h
  468. all: all-am
  469. .SUFFIXES:
  470. .SUFFIXES: .c .lo .o .obj
  471. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  472. @for dep in $?; do \
  473. case '$(am__configure_deps)' in \
  474. *$$dep*) \
  475. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  476. && { if test -f $@; then exit 0; else break; fi; }; \
  477. exit 1;; \
  478. esac; \
  479. done; \
  480. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/libpttls/Makefile'; \
  481. $(am__cd) $(top_srcdir) && \
  482. $(AUTOMAKE) --gnu src/libpttls/Makefile
  483. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  484. @case '$?' in \
  485. *config.status*) \
  486. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  487. *) \
  488. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  489. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  490. esac;
  491. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  492. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  493. $(top_srcdir)/configure: $(am__configure_deps)
  494. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  495. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  496. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  497. $(am__aclocal_m4_deps):
  498. install-ipseclibLTLIBRARIES: $(ipseclib_LTLIBRARIES)
  499. @$(NORMAL_INSTALL)
  500. @list='$(ipseclib_LTLIBRARIES)'; test -n "$(ipseclibdir)" || list=; \
  501. list2=; for p in $$list; do \
  502. if test -f $$p; then \
  503. list2="$$list2 $$p"; \
  504. else :; fi; \
  505. done; \
  506. test -z "$$list2" || { \
  507. echo " $(MKDIR_P) '$(DESTDIR)$(ipseclibdir)'"; \
  508. $(MKDIR_P) "$(DESTDIR)$(ipseclibdir)" || exit 1; \
  509. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(ipseclibdir)'"; \
  510. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(ipseclibdir)"; \
  511. }
  512. uninstall-ipseclibLTLIBRARIES:
  513. @$(NORMAL_UNINSTALL)
  514. @list='$(ipseclib_LTLIBRARIES)'; test -n "$(ipseclibdir)" || list=; \
  515. for p in $$list; do \
  516. $(am__strip_dir) \
  517. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(ipseclibdir)/$$f'"; \
  518. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(ipseclibdir)/$$f"; \
  519. done
  520. clean-ipseclibLTLIBRARIES:
  521. -test -z "$(ipseclib_LTLIBRARIES)" || rm -f $(ipseclib_LTLIBRARIES)
  522. @list='$(ipseclib_LTLIBRARIES)'; \
  523. locs=`for p in $$list; do echo $$p; done | \
  524. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  525. sort -u`; \
  526. test -z "$$locs" || { \
  527. echo rm -f $${locs}; \
  528. rm -f $${locs}; \
  529. }
  530. sasl/sasl_plain/$(am__dirstamp):
  531. @$(MKDIR_P) sasl/sasl_plain
  532. @: > sasl/sasl_plain/$(am__dirstamp)
  533. sasl/sasl_plain/$(DEPDIR)/$(am__dirstamp):
  534. @$(MKDIR_P) sasl/sasl_plain/$(DEPDIR)
  535. @: > sasl/sasl_plain/$(DEPDIR)/$(am__dirstamp)
  536. sasl/sasl_plain/sasl_plain.lo: sasl/sasl_plain/$(am__dirstamp) \
  537. sasl/sasl_plain/$(DEPDIR)/$(am__dirstamp)
  538. sasl/$(am__dirstamp):
  539. @$(MKDIR_P) sasl
  540. @: > sasl/$(am__dirstamp)
  541. sasl/$(DEPDIR)/$(am__dirstamp):
  542. @$(MKDIR_P) sasl/$(DEPDIR)
  543. @: > sasl/$(DEPDIR)/$(am__dirstamp)
  544. sasl/sasl_mechanism.lo: sasl/$(am__dirstamp) \
  545. sasl/$(DEPDIR)/$(am__dirstamp)
  546. libpttls.la: $(libpttls_la_OBJECTS) $(libpttls_la_DEPENDENCIES) $(EXTRA_libpttls_la_DEPENDENCIES)
  547. $(AM_V_CCLD)$(LINK) -rpath $(ipseclibdir) $(libpttls_la_OBJECTS) $(libpttls_la_LIBADD) $(LIBS)
  548. mostlyclean-compile:
  549. -rm -f *.$(OBJEXT)
  550. -rm -f sasl/*.$(OBJEXT)
  551. -rm -f sasl/*.lo
  552. -rm -f sasl/sasl_plain/*.$(OBJEXT)
  553. -rm -f sasl/sasl_plain/*.lo
  554. distclean-compile:
  555. -rm -f *.tab.c
  556. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pt_tls.Plo@am__quote@
  557. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pt_tls_client.Plo@am__quote@
  558. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pt_tls_dispatcher.Plo@am__quote@
  559. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pt_tls_server.Plo@am__quote@
  560. @AMDEP_TRUE@@am__include@ @am__quote@sasl/$(DEPDIR)/sasl_mechanism.Plo@am__quote@
  561. @AMDEP_TRUE@@am__include@ @am__quote@sasl/sasl_plain/$(DEPDIR)/sasl_plain.Plo@am__quote@
  562. .c.o:
  563. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  564. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  565. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  566. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  567. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  568. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  569. .c.obj:
  570. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  571. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  572. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  573. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  574. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  575. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  576. .c.lo:
  577. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  578. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  579. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  580. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  581. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  582. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  583. mostlyclean-libtool:
  584. -rm -f *.lo
  585. clean-libtool:
  586. -rm -rf .libs _libs
  587. -rm -rf sasl/.libs sasl/_libs
  588. -rm -rf sasl/sasl_plain/.libs sasl/sasl_plain/_libs
  589. ID: $(am__tagged_files)
  590. $(am__define_uniq_tagged_files); mkid -fID $$unique
  591. tags: tags-am
  592. TAGS: tags
  593. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  594. set x; \
  595. here=`pwd`; \
  596. $(am__define_uniq_tagged_files); \
  597. shift; \
  598. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  599. test -n "$$unique" || unique=$$empty_fix; \
  600. if test $$# -gt 0; then \
  601. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  602. "$$@" $$unique; \
  603. else \
  604. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  605. $$unique; \
  606. fi; \
  607. fi
  608. ctags: ctags-am
  609. CTAGS: ctags
  610. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  611. $(am__define_uniq_tagged_files); \
  612. test -z "$(CTAGS_ARGS)$$unique" \
  613. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  614. $$unique
  615. GTAGS:
  616. here=`$(am__cd) $(top_builddir) && pwd` \
  617. && $(am__cd) $(top_srcdir) \
  618. && gtags -i $(GTAGS_ARGS) "$$here"
  619. cscopelist: cscopelist-am
  620. cscopelist-am: $(am__tagged_files)
  621. list='$(am__tagged_files)'; \
  622. case "$(srcdir)" in \
  623. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  624. *) sdir=$(subdir)/$(srcdir) ;; \
  625. esac; \
  626. for i in $$list; do \
  627. if test -f "$$i"; then \
  628. echo "$(subdir)/$$i"; \
  629. else \
  630. echo "$$sdir/$$i"; \
  631. fi; \
  632. done >> $(top_builddir)/cscope.files
  633. distclean-tags:
  634. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  635. distdir: $(DISTFILES)
  636. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  637. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  638. list='$(DISTFILES)'; \
  639. dist_files=`for file in $$list; do echo $$file; done | \
  640. sed -e "s|^$$srcdirstrip/||;t" \
  641. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  642. case $$dist_files in \
  643. */*) $(MKDIR_P) `echo "$$dist_files" | \
  644. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  645. sort -u` ;; \
  646. esac; \
  647. for file in $$dist_files; do \
  648. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  649. if test -d $$d/$$file; then \
  650. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  651. if test -d "$(distdir)/$$file"; then \
  652. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  653. fi; \
  654. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  655. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  656. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  657. fi; \
  658. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  659. else \
  660. test -f "$(distdir)/$$file" \
  661. || cp -p $$d/$$file "$(distdir)/$$file" \
  662. || exit 1; \
  663. fi; \
  664. done
  665. check-am: all-am
  666. check: check-am
  667. all-am: Makefile $(LTLIBRARIES)
  668. installdirs:
  669. for dir in "$(DESTDIR)$(ipseclibdir)"; do \
  670. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  671. done
  672. install: install-am
  673. install-exec: install-exec-am
  674. install-data: install-data-am
  675. uninstall: uninstall-am
  676. install-am: all-am
  677. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  678. installcheck: installcheck-am
  679. install-strip:
  680. if test -z '$(STRIP)'; then \
  681. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  682. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  683. install; \
  684. else \
  685. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  686. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  687. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  688. fi
  689. mostlyclean-generic:
  690. clean-generic:
  691. distclean-generic:
  692. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  693. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  694. -rm -f sasl/$(DEPDIR)/$(am__dirstamp)
  695. -rm -f sasl/$(am__dirstamp)
  696. -rm -f sasl/sasl_plain/$(DEPDIR)/$(am__dirstamp)
  697. -rm -f sasl/sasl_plain/$(am__dirstamp)
  698. maintainer-clean-generic:
  699. @echo "This command is intended for maintainers to use"
  700. @echo "it deletes files that may require special tools to rebuild."
  701. clean: clean-am
  702. clean-am: clean-generic clean-ipseclibLTLIBRARIES clean-libtool \
  703. mostlyclean-am
  704. distclean: distclean-am
  705. -rm -rf ./$(DEPDIR) sasl/$(DEPDIR) sasl/sasl_plain/$(DEPDIR)
  706. -rm -f Makefile
  707. distclean-am: clean-am distclean-compile distclean-generic \
  708. distclean-tags
  709. dvi: dvi-am
  710. dvi-am:
  711. html: html-am
  712. html-am:
  713. info: info-am
  714. info-am:
  715. install-data-am: install-ipseclibLTLIBRARIES
  716. install-dvi: install-dvi-am
  717. install-dvi-am:
  718. install-exec-am:
  719. install-html: install-html-am
  720. install-html-am:
  721. install-info: install-info-am
  722. install-info-am:
  723. install-man:
  724. install-pdf: install-pdf-am
  725. install-pdf-am:
  726. install-ps: install-ps-am
  727. install-ps-am:
  728. installcheck-am:
  729. maintainer-clean: maintainer-clean-am
  730. -rm -rf ./$(DEPDIR) sasl/$(DEPDIR) sasl/sasl_plain/$(DEPDIR)
  731. -rm -f Makefile
  732. maintainer-clean-am: distclean-am maintainer-clean-generic
  733. mostlyclean: mostlyclean-am
  734. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  735. mostlyclean-libtool
  736. pdf: pdf-am
  737. pdf-am:
  738. ps: ps-am
  739. ps-am:
  740. uninstall-am: uninstall-ipseclibLTLIBRARIES
  741. .MAKE: install-am install-strip
  742. .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
  743. clean-ipseclibLTLIBRARIES clean-libtool cscopelist-am ctags \
  744. ctags-am distclean distclean-compile distclean-generic \
  745. distclean-libtool distclean-tags distdir dvi dvi-am html \
  746. html-am info info-am install install-am install-data \
  747. install-data-am install-dvi install-dvi-am install-exec \
  748. install-exec-am install-html install-html-am install-info \
  749. install-info-am install-ipseclibLTLIBRARIES install-man \
  750. install-pdf install-pdf-am install-ps install-ps-am \
  751. install-strip installcheck installcheck-am installdirs \
  752. maintainer-clean maintainer-clean-generic mostlyclean \
  753. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  754. pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
  755. uninstall-ipseclibLTLIBRARIES
  756. .PRECIOUS: Makefile
  757. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  758. # Otherwise a system limit (for SysV at least) may be exceeded.
  759. .NOEXPORT: