Makefile.in 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075
  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_FUZZING_TRUE@am__append_1 = fuzz
  87. @USE_SCRIPTS_TRUE@am__append_2 = scripts
  88. subdir = .
  89. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  90. am__aclocal_m4_deps = $(top_srcdir)/m4/config/libtool.m4 \
  91. $(top_srcdir)/m4/config/ltoptions.m4 \
  92. $(top_srcdir)/m4/config/ltsugar.m4 \
  93. $(top_srcdir)/m4/config/ltversion.m4 \
  94. $(top_srcdir)/m4/config/lt~obsolete.m4 \
  95. $(top_srcdir)/m4/macros/split-package-version.m4 \
  96. $(top_srcdir)/m4/macros/with.m4 \
  97. $(top_srcdir)/m4/macros/enable-disable.m4 \
  98. $(top_srcdir)/m4/macros/add-plugin.m4 \
  99. $(top_srcdir)/configure.ac
  100. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  101. $(ACLOCAL_M4)
  102. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  103. $(am__configure_deps) $(am__DIST_COMMON)
  104. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  105. configure.lineno config.status.lineno
  106. mkinstalldirs = $(install_sh) -d
  107. CONFIG_HEADER = config.h
  108. CONFIG_CLEAN_FILES =
  109. CONFIG_CLEAN_VPATH_FILES =
  110. AM_V_P = $(am__v_P_@AM_V@)
  111. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  112. am__v_P_0 = false
  113. am__v_P_1 = :
  114. AM_V_GEN = $(am__v_GEN_@AM_V@)
  115. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  116. am__v_GEN_0 = @echo " GEN " $@;
  117. am__v_GEN_1 =
  118. AM_V_at = $(am__v_at_@AM_V@)
  119. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  120. am__v_at_0 = @
  121. am__v_at_1 =
  122. SOURCES =
  123. DIST_SOURCES =
  124. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  125. ctags-recursive dvi-recursive html-recursive info-recursive \
  126. install-data-recursive install-dvi-recursive \
  127. install-exec-recursive install-html-recursive \
  128. install-info-recursive install-pdf-recursive \
  129. install-ps-recursive install-recursive installcheck-recursive \
  130. installdirs-recursive pdf-recursive ps-recursive \
  131. tags-recursive uninstall-recursive
  132. am__can_run_installinfo = \
  133. case $$AM_UPDATE_INFO_DIR in \
  134. n|no|NO) false;; \
  135. *) (install-info --version) >/dev/null 2>&1;; \
  136. esac
  137. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  138. am__vpath_adj = case $$p in \
  139. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  140. *) f=$$p;; \
  141. esac;
  142. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  143. am__install_max = 40
  144. am__nobase_strip_setup = \
  145. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  146. am__nobase_strip = \
  147. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  148. am__nobase_list = $(am__nobase_strip_setup); \
  149. for p in $$list; do echo "$$p $$p"; done | \
  150. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  151. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  152. if (++n[$$2] == $(am__install_max)) \
  153. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  154. END { for (dir in files) print dir, files[dir] }'
  155. am__base_list = \
  156. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  157. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  158. am__uninstall_files_from_dir = { \
  159. test -z "$$files" \
  160. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  161. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  162. $(am__cd) "$$dir" && rm -f $$files; }; \
  163. }
  164. am__installdirs = "$(DESTDIR)$(config_includedir)"
  165. HEADERS = $(nodist_config_include_HEADERS)
  166. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  167. distclean-recursive maintainer-clean-recursive
  168. am__recursive_targets = \
  169. $(RECURSIVE_TARGETS) \
  170. $(RECURSIVE_CLEAN_TARGETS) \
  171. $(am__extra_recursive_targets)
  172. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  173. cscope distdir dist dist-all distcheck
  174. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  175. $(LISP)config.h.in
  176. # Read a list of newline-separated strings from the standard input,
  177. # and print each of them once, without duplicates. Input order is
  178. # *not* preserved.
  179. am__uniquify_input = $(AWK) '\
  180. BEGIN { nonempty = 0; } \
  181. { items[$$0] = 1; nonempty = 1; } \
  182. END { if (nonempty) { for (i in items) print i; }; } \
  183. '
  184. # Make sure the list of sources is unique. This is necessary because,
  185. # e.g., the same source file might be shared among _SOURCES variables
  186. # for different programs/libraries.
  187. am__define_uniq_tagged_files = \
  188. list='$(am__tagged_files)'; \
  189. unique=`for i in $$list; do \
  190. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  191. done | $(am__uniquify_input)`
  192. ETAGS = etags
  193. CTAGS = ctags
  194. CSCOPE = cscope
  195. DIST_SUBDIRS = src man conf init testing fuzz scripts
  196. am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
  197. COPYING ChangeLog INSTALL NEWS README TODO compile \
  198. config.guess config.sub depcomp install-sh ltmain.sh missing \
  199. ylwrap
  200. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  201. distdir = $(PACKAGE)-$(VERSION)
  202. top_distdir = $(distdir)
  203. am__remove_distdir = \
  204. if test -d "$(distdir)"; then \
  205. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  206. && rm -rf "$(distdir)" \
  207. || { sleep 5 && rm -rf "$(distdir)"; }; \
  208. else :; fi
  209. am__post_remove_distdir = $(am__remove_distdir)
  210. am__relativize = \
  211. dir0=`pwd`; \
  212. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  213. sed_rest='s,^[^/]*/*,,'; \
  214. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  215. sed_butlast='s,/*[^/]*$$,,'; \
  216. while test -n "$$dir1"; do \
  217. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  218. if test "$$first" != "."; then \
  219. if test "$$first" = ".."; then \
  220. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  221. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  222. else \
  223. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  224. if test "$$first2" = "$$first"; then \
  225. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  226. else \
  227. dir2="../$$dir2"; \
  228. fi; \
  229. dir0="$$dir0"/"$$first"; \
  230. fi; \
  231. fi; \
  232. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  233. done; \
  234. reldir="$$dir2"
  235. DIST_ARCHIVES = $(distdir).tar.gz
  236. GZIP_ENV = --best
  237. DIST_TARGETS = dist-gzip
  238. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  239. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  240. distcleancheck_listfiles = find . -type f -print
  241. ACLOCAL = @ACLOCAL@
  242. ALLOCA = @ALLOCA@
  243. AMTAR = @AMTAR@
  244. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  245. AR = @AR@
  246. ATOMICLIB = @ATOMICLIB@
  247. AUTOCONF = @AUTOCONF@
  248. AUTOHEADER = @AUTOHEADER@
  249. AUTOMAKE = @AUTOMAKE@
  250. AWK = @AWK@
  251. BFDLIB = @BFDLIB@
  252. BTLIB = @BTLIB@
  253. CC = @CC@
  254. CCDEPMODE = @CCDEPMODE@
  255. CFLAGS = @CFLAGS@
  256. COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
  257. COVERAGE_LDFLAGS = @COVERAGE_LDFLAGS@
  258. CPP = @CPP@
  259. CPPFLAGS = @CPPFLAGS@
  260. CYGPATH_W = @CYGPATH_W@
  261. DEFS = @DEFS@
  262. DEPDIR = @DEPDIR@
  263. DLLIB = @DLLIB@
  264. DLLTOOL = @DLLTOOL@
  265. DSYMUTIL = @DSYMUTIL@
  266. DUMPBIN = @DUMPBIN@
  267. EASY_INSTALL = @EASY_INSTALL@
  268. ECHO_C = @ECHO_C@
  269. ECHO_N = @ECHO_N@
  270. ECHO_T = @ECHO_T@
  271. EGREP = @EGREP@
  272. EXEEXT = @EXEEXT@
  273. FGREP = @FGREP@
  274. FUZZING_CFLAGS = @FUZZING_CFLAGS@
  275. FUZZING_LDFLAGS = @FUZZING_LDFLAGS@
  276. GEM = @GEM@
  277. GENHTML = @GENHTML@
  278. GPERF = @GPERF@
  279. GPERF_LEN_TYPE = @GPERF_LEN_TYPE@
  280. GPRBUILD = @GPRBUILD@
  281. GREP = @GREP@
  282. INSTALL = @INSTALL@
  283. INSTALL_DATA = @INSTALL_DATA@
  284. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  285. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  286. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  287. LCOV = @LCOV@
  288. LD = @LD@
  289. LDFLAGS = @LDFLAGS@
  290. LEX = @LEX@
  291. LEXLIB = @LEXLIB@
  292. LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
  293. LIBOBJS = @LIBOBJS@
  294. LIBS = @LIBS@
  295. LIBTOOL = @LIBTOOL@
  296. LIPO = @LIPO@
  297. LN_S = @LN_S@
  298. LTLIBOBJS = @LTLIBOBJS@
  299. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  300. MAKEINFO = @MAKEINFO@
  301. MANIFEST_TOOL = @MANIFEST_TOOL@
  302. MKDIR_P = @MKDIR_P@
  303. MYSQLCFLAG = @MYSQLCFLAG@
  304. MYSQLCONFIG = @MYSQLCONFIG@
  305. MYSQLLIB = @MYSQLLIB@
  306. NM = @NM@
  307. NMEDIT = @NMEDIT@
  308. OBJDUMP = @OBJDUMP@
  309. OBJEXT = @OBJEXT@
  310. OPENSSL_LIB = @OPENSSL_LIB@
  311. OTOOL = @OTOOL@
  312. OTOOL64 = @OTOOL64@
  313. PACKAGE = @PACKAGE@
  314. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  315. PACKAGE_NAME = @PACKAGE_NAME@
  316. PACKAGE_STRING = @PACKAGE_STRING@
  317. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  318. PACKAGE_URL = @PACKAGE_URL@
  319. PACKAGE_VERSION = @PACKAGE_VERSION@
  320. PACKAGE_VERSION_BUILD = @PACKAGE_VERSION_BUILD@
  321. PACKAGE_VERSION_MAJOR = @PACKAGE_VERSION_MAJOR@
  322. PACKAGE_VERSION_MINOR = @PACKAGE_VERSION_MINOR@
  323. PACKAGE_VERSION_REVIEW = @PACKAGE_VERSION_REVIEW@
  324. PATH_SEPARATOR = @PATH_SEPARATOR@
  325. PERL = @PERL@
  326. PKG_CONFIG = @PKG_CONFIG@
  327. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  328. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  329. PLUGIN_CFLAGS = @PLUGIN_CFLAGS@
  330. PTHREADLIB = @PTHREADLIB@
  331. PYTHON = @PYTHON@
  332. PYTHONEGGINSTALLDIR = @PYTHONEGGINSTALLDIR@
  333. PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
  334. PYTHON_PACKAGE_VERSION = @PYTHON_PACKAGE_VERSION@
  335. PYTHON_PLATFORM = @PYTHON_PLATFORM@
  336. PYTHON_PREFIX = @PYTHON_PREFIX@
  337. PYTHON_VERSION = @PYTHON_VERSION@
  338. PY_TEST = @PY_TEST@
  339. RANLIB = @RANLIB@
  340. RTLIB = @RTLIB@
  341. RUBYGEMDIR = @RUBYGEMDIR@
  342. SED = @SED@
  343. SET_MAKE = @SET_MAKE@
  344. SHELL = @SHELL@
  345. SOCKLIB = @SOCKLIB@
  346. STRIP = @STRIP@
  347. UNWINDLIB = @UNWINDLIB@
  348. VERSION = @VERSION@
  349. WOLFSSL_LIB = @WOLFSSL_LIB@
  350. YACC = @YACC@
  351. YFLAGS = @YFLAGS@
  352. abs_builddir = @abs_builddir@
  353. abs_srcdir = @abs_srcdir@
  354. abs_top_builddir = @abs_top_builddir@
  355. abs_top_srcdir = @abs_top_srcdir@
  356. ac_ct_AR = @ac_ct_AR@
  357. ac_ct_CC = @ac_ct_CC@
  358. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  359. aikgen_plugins = @aikgen_plugins@
  360. am__include = @am__include@
  361. am__leading_dot = @am__leading_dot@
  362. am__quote = @am__quote@
  363. am__tar = @am__tar@
  364. am__untar = @am__untar@
  365. attest_plugins = @attest_plugins@
  366. bindir = @bindir@
  367. botan_CFLAGS = @botan_CFLAGS@
  368. botan_LIBS = @botan_LIBS@
  369. build = @build@
  370. build_alias = @build_alias@
  371. build_cpu = @build_cpu@
  372. build_os = @build_os@
  373. build_vendor = @build_vendor@
  374. builddir = @builddir@
  375. c_plugins = @c_plugins@
  376. charon_natt_port = @charon_natt_port@
  377. charon_plugins = @charon_plugins@
  378. charon_udp_port = @charon_udp_port@
  379. clearsilver_LIBS = @clearsilver_LIBS@
  380. cmd_plugins = @cmd_plugins@
  381. datadir = @datadir@
  382. datarootdir = @datarootdir@
  383. dev_headers = @dev_headers@
  384. docdir = @docdir@
  385. dvidir = @dvidir@
  386. exec_prefix = @exec_prefix@
  387. fips_mode = @fips_mode@
  388. fuzz_plugins = @fuzz_plugins@
  389. host = @host@
  390. host_alias = @host_alias@
  391. host_cpu = @host_cpu@
  392. host_os = @host_os@
  393. host_vendor = @host_vendor@
  394. htmldir = @htmldir@
  395. imcvdir = @imcvdir@
  396. includedir = @includedir@
  397. infodir = @infodir@
  398. install_sh = @install_sh@
  399. ipsec_script = @ipsec_script@
  400. ipsec_script_upper = @ipsec_script_upper@
  401. ipsecdir = @ipsecdir@
  402. ipsecgroup = @ipsecgroup@
  403. ipseclibdir = @ipseclibdir@
  404. ipsecuser = @ipsecuser@
  405. json_CFLAGS = @json_CFLAGS@
  406. json_LIBS = @json_LIBS@
  407. libdir = @libdir@
  408. libexecdir = @libexecdir@
  409. libfuzzer = @libfuzzer@
  410. libiptc_CFLAGS = @libiptc_CFLAGS@
  411. libiptc_LIBS = @libiptc_LIBS@
  412. linux_headers = @linux_headers@
  413. localedir = @localedir@
  414. localstatedir = @localstatedir@
  415. manager_plugins = @manager_plugins@
  416. mandir = @mandir@
  417. medsrv_plugins = @medsrv_plugins@
  418. mkdir_p = @mkdir_p@
  419. nm_CFLAGS = @nm_CFLAGS@
  420. nm_LIBS = @nm_LIBS@
  421. nm_ca_dir = @nm_ca_dir@
  422. nm_plugins = @nm_plugins@
  423. oldincludedir = @oldincludedir@
  424. p_plugins = @p_plugins@
  425. pcsclite_CFLAGS = @pcsclite_CFLAGS@
  426. pcsclite_LIBS = @pcsclite_LIBS@
  427. pdfdir = @pdfdir@
  428. piddir = @piddir@
  429. pkgpyexecdir = @pkgpyexecdir@
  430. pkgpythondir = @pkgpythondir@
  431. pki_plugins = @pki_plugins@
  432. plugindir = @plugindir@
  433. pool_plugins = @pool_plugins@
  434. prefix = @prefix@
  435. program_transform_name = @program_transform_name@
  436. psdir = @psdir@
  437. pyexecdir = @pyexecdir@
  438. pythondir = @pythondir@
  439. random_device = @random_device@
  440. resolv_conf = @resolv_conf@
  441. routing_table = @routing_table@
  442. routing_table_prio = @routing_table_prio@
  443. runstatedir = @runstatedir@
  444. s_plugins = @s_plugins@
  445. sbindir = @sbindir@
  446. scepclient_plugins = @scepclient_plugins@
  447. scripts_plugins = @scripts_plugins@
  448. sharedstatedir = @sharedstatedir@
  449. soup_CFLAGS = @soup_CFLAGS@
  450. soup_LIBS = @soup_LIBS@
  451. srcdir = @srcdir@
  452. starter_plugins = @starter_plugins@
  453. strongswan_conf = @strongswan_conf@
  454. strongswan_options = @strongswan_options@
  455. swanctldir = @swanctldir@
  456. sysconfdir = @sysconfdir@
  457. systemd_CFLAGS = @systemd_CFLAGS@
  458. systemd_LIBS = @systemd_LIBS@
  459. systemd_daemon_CFLAGS = @systemd_daemon_CFLAGS@
  460. systemd_daemon_LIBS = @systemd_daemon_LIBS@
  461. systemd_journal_CFLAGS = @systemd_journal_CFLAGS@
  462. systemd_journal_LIBS = @systemd_journal_LIBS@
  463. systemdsystemunitdir = @systemdsystemunitdir@
  464. t_plugins = @t_plugins@
  465. target_alias = @target_alias@
  466. top_build_prefix = @top_build_prefix@
  467. top_builddir = @top_builddir@
  468. top_srcdir = @top_srcdir@
  469. tss2_CFLAGS = @tss2_CFLAGS@
  470. tss2_LIBS = @tss2_LIBS@
  471. tss2_esys_CFLAGS = @tss2_esys_CFLAGS@
  472. tss2_esys_LIBS = @tss2_esys_LIBS@
  473. tss2_socket_CFLAGS = @tss2_socket_CFLAGS@
  474. tss2_socket_LIBS = @tss2_socket_LIBS@
  475. tss2_sys_CFLAGS = @tss2_sys_CFLAGS@
  476. tss2_sys_LIBS = @tss2_sys_LIBS@
  477. tss2_tabrmd_CFLAGS = @tss2_tabrmd_CFLAGS@
  478. tss2_tabrmd_LIBS = @tss2_tabrmd_LIBS@
  479. urandom_device = @urandom_device@
  480. xml_CFLAGS = @xml_CFLAGS@
  481. xml_LIBS = @xml_LIBS@
  482. SUBDIRS = src man conf init testing $(am__append_1) $(am__append_2)
  483. @USE_SILENT_RULES_TRUE@AM_MAKEFLAGS = -s
  484. ACLOCAL_AMFLAGS = -I m4/config
  485. EXTRA_DIST = Doxyfile.in LICENSE Android.common.mk.in Android.common.mk Android.mk
  486. CLEANFILES = Doxyfile
  487. BUILT_SOURCES = Android.common.mk
  488. MAINTAINERCLEANFILES = Android.common.mk
  489. @USE_DEV_HEADERS_TRUE@config_includedir = $(ipseclibdir)/include
  490. @USE_DEV_HEADERS_TRUE@nodist_config_include_HEADERS = config.h
  491. # we can't (and shouldn't) install/uninstall system files during make distcheck,
  492. # so override the autodetected path for systemd units
  493. AM_DISTCHECK_CONFIGURE_FLAGS = \
  494. --with-systemdsystemunitdir='$$(prefix)/lib/systemd/system'
  495. # we leave config files behind intentionally so prevent distcheck from complaining
  496. distuninstallcheck_listfiles = find . -type f \! -name '*.conf' \! -name '*.secrets' -print
  497. all: $(BUILT_SOURCES) config.h
  498. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  499. .SUFFIXES:
  500. am--refresh: Makefile
  501. @:
  502. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  503. @for dep in $?; do \
  504. case '$(am__configure_deps)' in \
  505. *$$dep*) \
  506. echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
  507. $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
  508. && exit 0; \
  509. exit 1;; \
  510. esac; \
  511. done; \
  512. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
  513. $(am__cd) $(top_srcdir) && \
  514. $(AUTOMAKE) --gnu Makefile
  515. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  516. @case '$?' in \
  517. *config.status*) \
  518. echo ' $(SHELL) ./config.status'; \
  519. $(SHELL) ./config.status;; \
  520. *) \
  521. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  522. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  523. esac;
  524. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  525. $(SHELL) ./config.status --recheck
  526. $(top_srcdir)/configure: $(am__configure_deps)
  527. $(am__cd) $(srcdir) && $(AUTOCONF)
  528. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  529. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  530. $(am__aclocal_m4_deps):
  531. config.h: stamp-h1
  532. @test -f $@ || rm -f stamp-h1
  533. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  534. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  535. @rm -f stamp-h1
  536. cd $(top_builddir) && $(SHELL) ./config.status config.h
  537. $(srcdir)/config.h.in: $(am__configure_deps)
  538. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  539. rm -f stamp-h1
  540. touch $@
  541. distclean-hdr:
  542. -rm -f config.h stamp-h1
  543. mostlyclean-libtool:
  544. -rm -f *.lo
  545. clean-libtool:
  546. -rm -rf .libs _libs
  547. distclean-libtool:
  548. -rm -f libtool config.lt
  549. install-nodist_config_includeHEADERS: $(nodist_config_include_HEADERS)
  550. @$(NORMAL_INSTALL)
  551. @list='$(nodist_config_include_HEADERS)'; test -n "$(config_includedir)" || list=; \
  552. if test -n "$$list"; then \
  553. echo " $(MKDIR_P) '$(DESTDIR)$(config_includedir)'"; \
  554. $(MKDIR_P) "$(DESTDIR)$(config_includedir)" || exit 1; \
  555. fi; \
  556. for p in $$list; do \
  557. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  558. echo "$$d$$p"; \
  559. done | $(am__base_list) | \
  560. while read files; do \
  561. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(config_includedir)'"; \
  562. $(INSTALL_HEADER) $$files "$(DESTDIR)$(config_includedir)" || exit $$?; \
  563. done
  564. uninstall-nodist_config_includeHEADERS:
  565. @$(NORMAL_UNINSTALL)
  566. @list='$(nodist_config_include_HEADERS)'; test -n "$(config_includedir)" || list=; \
  567. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  568. dir='$(DESTDIR)$(config_includedir)'; $(am__uninstall_files_from_dir)
  569. # This directory's subdirectories are mostly independent; you can cd
  570. # into them and run 'make' without going through this Makefile.
  571. # To change the values of 'make' variables: instead of editing Makefiles,
  572. # (1) if the variable is set in 'config.status', edit 'config.status'
  573. # (which will cause the Makefiles to be regenerated when you run 'make');
  574. # (2) otherwise, pass the desired values on the 'make' command line.
  575. $(am__recursive_targets):
  576. @fail=; \
  577. if $(am__make_keepgoing); then \
  578. failcom='fail=yes'; \
  579. else \
  580. failcom='exit 1'; \
  581. fi; \
  582. dot_seen=no; \
  583. target=`echo $@ | sed s/-recursive//`; \
  584. case "$@" in \
  585. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  586. *) list='$(SUBDIRS)' ;; \
  587. esac; \
  588. for subdir in $$list; do \
  589. echo "Making $$target in $$subdir"; \
  590. if test "$$subdir" = "."; then \
  591. dot_seen=yes; \
  592. local_target="$$target-am"; \
  593. else \
  594. local_target="$$target"; \
  595. fi; \
  596. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  597. || eval $$failcom; \
  598. done; \
  599. if test "$$dot_seen" = "no"; then \
  600. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  601. fi; test -z "$$fail"
  602. ID: $(am__tagged_files)
  603. $(am__define_uniq_tagged_files); mkid -fID $$unique
  604. tags: tags-recursive
  605. TAGS: tags
  606. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  607. set x; \
  608. here=`pwd`; \
  609. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  610. include_option=--etags-include; \
  611. empty_fix=.; \
  612. else \
  613. include_option=--include; \
  614. empty_fix=; \
  615. fi; \
  616. list='$(SUBDIRS)'; for subdir in $$list; do \
  617. if test "$$subdir" = .; then :; else \
  618. test ! -f $$subdir/TAGS || \
  619. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  620. fi; \
  621. done; \
  622. $(am__define_uniq_tagged_files); \
  623. shift; \
  624. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  625. test -n "$$unique" || unique=$$empty_fix; \
  626. if test $$# -gt 0; then \
  627. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  628. "$$@" $$unique; \
  629. else \
  630. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  631. $$unique; \
  632. fi; \
  633. fi
  634. ctags: ctags-recursive
  635. CTAGS: ctags
  636. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  637. $(am__define_uniq_tagged_files); \
  638. test -z "$(CTAGS_ARGS)$$unique" \
  639. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  640. $$unique
  641. GTAGS:
  642. here=`$(am__cd) $(top_builddir) && pwd` \
  643. && $(am__cd) $(top_srcdir) \
  644. && gtags -i $(GTAGS_ARGS) "$$here"
  645. cscope: cscope.files
  646. test ! -s cscope.files \
  647. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  648. clean-cscope:
  649. -rm -f cscope.files
  650. cscope.files: clean-cscope cscopelist
  651. cscopelist: cscopelist-recursive
  652. cscopelist-am: $(am__tagged_files)
  653. list='$(am__tagged_files)'; \
  654. case "$(srcdir)" in \
  655. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  656. *) sdir=$(subdir)/$(srcdir) ;; \
  657. esac; \
  658. for i in $$list; do \
  659. if test -f "$$i"; then \
  660. echo "$(subdir)/$$i"; \
  661. else \
  662. echo "$$sdir/$$i"; \
  663. fi; \
  664. done >> $(top_builddir)/cscope.files
  665. distclean-tags:
  666. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  667. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  668. distdir: $(DISTFILES)
  669. $(am__remove_distdir)
  670. test -d "$(distdir)" || mkdir "$(distdir)"
  671. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  672. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  673. list='$(DISTFILES)'; \
  674. dist_files=`for file in $$list; do echo $$file; done | \
  675. sed -e "s|^$$srcdirstrip/||;t" \
  676. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  677. case $$dist_files in \
  678. */*) $(MKDIR_P) `echo "$$dist_files" | \
  679. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  680. sort -u` ;; \
  681. esac; \
  682. for file in $$dist_files; do \
  683. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  684. if test -d $$d/$$file; then \
  685. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  686. if test -d "$(distdir)/$$file"; then \
  687. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  688. fi; \
  689. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  690. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  691. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  692. fi; \
  693. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  694. else \
  695. test -f "$(distdir)/$$file" \
  696. || cp -p $$d/$$file "$(distdir)/$$file" \
  697. || exit 1; \
  698. fi; \
  699. done
  700. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  701. if test "$$subdir" = .; then :; else \
  702. $(am__make_dryrun) \
  703. || test -d "$(distdir)/$$subdir" \
  704. || $(MKDIR_P) "$(distdir)/$$subdir" \
  705. || exit 1; \
  706. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  707. $(am__relativize); \
  708. new_distdir=$$reldir; \
  709. dir1=$$subdir; dir2="$(top_distdir)"; \
  710. $(am__relativize); \
  711. new_top_distdir=$$reldir; \
  712. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  713. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  714. ($(am__cd) $$subdir && \
  715. $(MAKE) $(AM_MAKEFLAGS) \
  716. top_distdir="$$new_top_distdir" \
  717. distdir="$$new_distdir" \
  718. am__remove_distdir=: \
  719. am__skip_length_check=: \
  720. am__skip_mode_fix=: \
  721. distdir) \
  722. || exit 1; \
  723. fi; \
  724. done
  725. -test -n "$(am__skip_mode_fix)" \
  726. || find "$(distdir)" -type d ! -perm -755 \
  727. -exec chmod u+rwx,go+rx {} \; -o \
  728. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  729. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  730. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  731. || chmod -R a+r "$(distdir)"
  732. dist-gzip: distdir
  733. tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
  734. $(am__post_remove_distdir)
  735. dist-bzip2: distdir
  736. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  737. $(am__post_remove_distdir)
  738. dist-lzip: distdir
  739. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  740. $(am__post_remove_distdir)
  741. dist-xz: distdir
  742. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  743. $(am__post_remove_distdir)
  744. dist-tarZ: distdir
  745. @echo WARNING: "Support for distribution archives compressed with" \
  746. "legacy program 'compress' is deprecated." >&2
  747. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  748. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  749. $(am__post_remove_distdir)
  750. dist-shar: distdir
  751. @echo WARNING: "Support for shar distribution archives is" \
  752. "deprecated." >&2
  753. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  754. shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
  755. $(am__post_remove_distdir)
  756. dist-zip: distdir
  757. -rm -f $(distdir).zip
  758. zip -rq $(distdir).zip $(distdir)
  759. $(am__post_remove_distdir)
  760. dist dist-all:
  761. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  762. $(am__post_remove_distdir)
  763. # This target untars the dist file and tries a VPATH configuration. Then
  764. # it guarantees that the distribution is self-contained by making another
  765. # tarfile.
  766. distcheck: dist
  767. case '$(DIST_ARCHIVES)' in \
  768. *.tar.gz*) \
  769. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
  770. *.tar.bz2*) \
  771. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  772. *.tar.lz*) \
  773. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  774. *.tar.xz*) \
  775. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  776. *.tar.Z*) \
  777. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  778. *.shar.gz*) \
  779. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
  780. *.zip*) \
  781. unzip $(distdir).zip ;;\
  782. esac
  783. chmod -R a-w $(distdir)
  784. chmod u+w $(distdir)
  785. mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
  786. chmod a-w $(distdir)
  787. test -d $(distdir)/_build || exit 0; \
  788. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  789. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  790. && am__cwd=`pwd` \
  791. && $(am__cd) $(distdir)/_build/sub \
  792. && ../../configure \
  793. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  794. $(DISTCHECK_CONFIGURE_FLAGS) \
  795. --srcdir=../.. --prefix="$$dc_install_base" \
  796. && $(MAKE) $(AM_MAKEFLAGS) \
  797. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  798. && $(MAKE) $(AM_MAKEFLAGS) check \
  799. && $(MAKE) $(AM_MAKEFLAGS) install \
  800. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  801. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  802. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  803. distuninstallcheck \
  804. && chmod -R a-w "$$dc_install_base" \
  805. && ({ \
  806. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  807. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  808. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  809. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  810. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  811. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  812. && rm -rf "$$dc_destdir" \
  813. && $(MAKE) $(AM_MAKEFLAGS) dist \
  814. && rm -rf $(DIST_ARCHIVES) \
  815. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  816. && cd "$$am__cwd" \
  817. || exit 1
  818. $(am__post_remove_distdir)
  819. @(echo "$(distdir) archives ready for distribution: "; \
  820. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  821. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  822. distuninstallcheck:
  823. @test -n '$(distuninstallcheck_dir)' || { \
  824. echo 'ERROR: trying to run $@ with an empty' \
  825. '$$(distuninstallcheck_dir)' >&2; \
  826. exit 1; \
  827. }; \
  828. $(am__cd) '$(distuninstallcheck_dir)' || { \
  829. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  830. exit 1; \
  831. }; \
  832. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  833. || { echo "ERROR: files left after uninstall:" ; \
  834. if test -n "$(DESTDIR)"; then \
  835. echo " (check DESTDIR support)"; \
  836. fi ; \
  837. $(distuninstallcheck_listfiles) ; \
  838. exit 1; } >&2
  839. distcleancheck: distclean
  840. @if test '$(srcdir)' = . ; then \
  841. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  842. exit 1 ; \
  843. fi
  844. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  845. || { echo "ERROR: files left in build directory after distclean:" ; \
  846. $(distcleancheck_listfiles) ; \
  847. exit 1; } >&2
  848. check-am: all-am
  849. check: $(BUILT_SOURCES)
  850. $(MAKE) $(AM_MAKEFLAGS) check-recursive
  851. all-am: Makefile $(HEADERS) config.h
  852. installdirs: installdirs-recursive
  853. installdirs-am:
  854. for dir in "$(DESTDIR)$(config_includedir)"; do \
  855. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  856. done
  857. install: $(BUILT_SOURCES)
  858. $(MAKE) $(AM_MAKEFLAGS) install-recursive
  859. install-exec: install-exec-recursive
  860. install-data: install-data-recursive
  861. uninstall: uninstall-recursive
  862. install-am: all-am
  863. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  864. installcheck: installcheck-recursive
  865. install-strip:
  866. if test -z '$(STRIP)'; then \
  867. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  868. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  869. install; \
  870. else \
  871. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  872. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  873. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  874. fi
  875. mostlyclean-generic:
  876. clean-generic:
  877. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  878. distclean-generic:
  879. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  880. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  881. maintainer-clean-generic:
  882. @echo "This command is intended for maintainers to use"
  883. @echo "it deletes files that may require special tools to rebuild."
  884. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  885. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  886. clean: clean-recursive
  887. clean-am: clean-generic clean-libtool clean-local mostlyclean-am
  888. distclean: distclean-recursive
  889. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  890. -rm -f Makefile
  891. distclean-am: clean-am distclean-generic distclean-hdr \
  892. distclean-libtool distclean-tags
  893. dvi: dvi-recursive
  894. dvi-am:
  895. html: html-recursive
  896. html-am:
  897. info: info-recursive
  898. info-am:
  899. install-data-am: install-nodist_config_includeHEADERS
  900. install-dvi: install-dvi-recursive
  901. install-dvi-am:
  902. install-exec-am:
  903. install-html: install-html-recursive
  904. install-html-am:
  905. install-info: install-info-recursive
  906. install-info-am:
  907. install-man:
  908. install-pdf: install-pdf-recursive
  909. install-pdf-am:
  910. install-ps: install-ps-recursive
  911. install-ps-am:
  912. installcheck-am:
  913. maintainer-clean: maintainer-clean-recursive
  914. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  915. -rm -rf $(top_srcdir)/autom4te.cache
  916. -rm -f Makefile
  917. maintainer-clean-am: distclean-am maintainer-clean-generic
  918. mostlyclean: mostlyclean-recursive
  919. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  920. pdf: pdf-recursive
  921. pdf-am:
  922. ps: ps-recursive
  923. ps-am:
  924. uninstall-am: uninstall-nodist_config_includeHEADERS
  925. .MAKE: $(am__recursive_targets) all check install install-am \
  926. install-strip
  927. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  928. am--refresh check check-am clean clean-cscope clean-generic \
  929. clean-libtool clean-local cscope cscopelist-am ctags ctags-am \
  930. dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \
  931. dist-tarZ dist-xz dist-zip distcheck distclean \
  932. distclean-generic distclean-hdr distclean-libtool \
  933. distclean-tags distcleancheck distdir distuninstallcheck dvi \
  934. dvi-am html html-am info info-am install install-am \
  935. install-data install-data-am install-dvi install-dvi-am \
  936. install-exec install-exec-am install-html install-html-am \
  937. install-info install-info-am install-man \
  938. install-nodist_config_includeHEADERS install-pdf \
  939. install-pdf-am install-ps install-ps-am install-strip \
  940. installcheck installcheck-am installdirs installdirs-am \
  941. maintainer-clean maintainer-clean-generic mostlyclean \
  942. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  943. tags tags-am uninstall uninstall-am \
  944. uninstall-nodist_config_includeHEADERS
  945. .PRECIOUS: Makefile
  946. Android.common.mk : Android.common.mk.in configure.ac
  947. $(AM_V_GEN) \
  948. sed \
  949. -e "s:\@PACKAGE_VERSION\@:$(PACKAGE_VERSION):" \
  950. $(srcdir)/$@.in > $@
  951. Doxyfile : Doxyfile.in
  952. $(AM_V_GEN) \
  953. sed \
  954. -e "s:\@PACKAGE_VERSION\@:$(PACKAGE_VERSION):" \
  955. -e "s:\@PACKAGE_NAME\@:$(PACKAGE_NAME):" \
  956. -e "s:\@SRC_DIR\@:$(srcdir):g" \
  957. $(srcdir)/$@.in > $@
  958. apidoc : Doxyfile
  959. @test -d apidoc || doxygen
  960. @! find Doxyfile $(top_srcdir)/src/ \( -name '*.h' -o -name '*.md' \) -newer apidoc | \
  961. grep -q '' || doxygen && touch apidoc
  962. cov-reset-common:
  963. @rm -rf $(top_builddir)/coverage
  964. @find $(top_builddir)/src $(top_builddir)/scripts -name "*.gcda" -delete
  965. @COVERAGE_TRUE@cov-reset: cov-reset-common
  966. @COVERAGE_TRUE@ @lcov --zerocounters --directory $(top_builddir)
  967. @COVERAGE_TRUE@cov-report:
  968. @COVERAGE_TRUE@ @mkdir $(top_builddir)/coverage
  969. @COVERAGE_TRUE@ lcov -c -o $(top_builddir)/coverage/coverage.info -d $(top_builddir) \
  970. @COVERAGE_TRUE@ --rc lcov_branch_coverage=1
  971. @COVERAGE_TRUE@ lcov -r $(top_builddir)/coverage/coverage.info '*/tests/*' '*/suites/*' '/usr*' \
  972. @COVERAGE_TRUE@ -o $(abs_top_builddir)/coverage/coverage.cleaned.info \
  973. @COVERAGE_TRUE@ --rc lcov_branch_coverage=1
  974. @COVERAGE_TRUE@ genhtml --num-spaces 4 --legend --branch-coverage --ignore-errors source \
  975. @COVERAGE_TRUE@ -t "$(PACKAGE_STRING)" \
  976. @COVERAGE_TRUE@ -o $(top_builddir)/coverage/html \
  977. @COVERAGE_TRUE@ -p `readlink -m $(abs_top_srcdir)`/src \
  978. @COVERAGE_TRUE@ $(top_builddir)/coverage/coverage.cleaned.info
  979. @COVERAGE_TRUE@ @echo "Coverage Report at $(top_builddir)/coverage/html" >&2
  980. @COVERAGE_TRUE@coverage:
  981. @COVERAGE_TRUE@ @$(MAKE) cov-reset
  982. @COVERAGE_TRUE@ @$(MAKE) check
  983. @COVERAGE_TRUE@ @$(MAKE) cov-report
  984. @COVERAGE_FALSE@coverage:
  985. @COVERAGE_FALSE@ @echo "reconfigure with --enable-coverage"
  986. clean-local: cov-reset-common
  987. @find $(top_builddir)/src $(top_builddir)/scripts -name "*.gcno" -delete
  988. @rm -rf apidoc
  989. .PHONY: cov-reset-common cov-reset cov-report coverage apidoc
  990. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  991. # Otherwise a system limit (for SysV at least) may be exceeded.
  992. .NOEXPORT: