Makefile 34 KB

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