Makefile.in 33 KB

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