Makefile.in 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396
  1. # Makefile.in generated by automake 1.15.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2017 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. VPATH = @srcdir@
  13. am__is_gnu_make = { \
  14. if test -z '$(MAKELEVEL)'; then \
  15. false; \
  16. elif test -n '$(MAKE_HOST)'; then \
  17. true; \
  18. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  19. true; \
  20. else \
  21. false; \
  22. fi; \
  23. }
  24. am__make_running_with_option = \
  25. case $${target_option-} in \
  26. ?) ;; \
  27. *) echo "am__make_running_with_option: internal error: invalid" \
  28. "target option '$${target_option-}' specified" >&2; \
  29. exit 1;; \
  30. esac; \
  31. has_opt=no; \
  32. sane_makeflags=$$MAKEFLAGS; \
  33. if $(am__is_gnu_make); then \
  34. sane_makeflags=$$MFLAGS; \
  35. else \
  36. case $$MAKEFLAGS in \
  37. *\\[\ \ ]*) \
  38. bs=\\; \
  39. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  40. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  41. esac; \
  42. fi; \
  43. skip_next=no; \
  44. strip_trailopt () \
  45. { \
  46. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  47. }; \
  48. for flg in $$sane_makeflags; do \
  49. test $$skip_next = yes && { skip_next=no; continue; }; \
  50. case $$flg in \
  51. *=*|--*) continue;; \
  52. -*I) strip_trailopt 'I'; skip_next=yes;; \
  53. -*I?*) strip_trailopt 'I';; \
  54. -*O) strip_trailopt 'O'; skip_next=yes;; \
  55. -*O?*) strip_trailopt 'O';; \
  56. -*l) strip_trailopt 'l'; skip_next=yes;; \
  57. -*l?*) strip_trailopt 'l';; \
  58. -[dEDm]) skip_next=yes;; \
  59. -[JT]) skip_next=yes;; \
  60. esac; \
  61. case $$flg in \
  62. *$$target_option*) has_opt=yes; break;; \
  63. esac; \
  64. done; \
  65. test $$has_opt = yes
  66. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  67. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  68. pkgdatadir = $(datadir)/@PACKAGE@
  69. pkgincludedir = $(includedir)/@PACKAGE@
  70. pkglibdir = $(libdir)/@PACKAGE@
  71. pkglibexecdir = $(libexecdir)/@PACKAGE@
  72. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  73. install_sh_DATA = $(install_sh) -c -m 644
  74. install_sh_PROGRAM = $(install_sh) -c
  75. install_sh_SCRIPT = $(install_sh) -c
  76. INSTALL_HEADER = $(INSTALL_DATA)
  77. transform = $(program_transform_name)
  78. NORMAL_INSTALL = :
  79. PRE_INSTALL = :
  80. POST_INSTALL = :
  81. NORMAL_UNINSTALL = :
  82. PRE_UNINSTALL = :
  83. POST_UNINSTALL = :
  84. build_triplet = @build@
  85. host_triplet = @host@
  86. target_triplet = @target@
  87. libexec_PROGRAMS = src/tangd$(EXEEXT)
  88. @HAVE_A2X_TRUE@am__append_1 = $(man_ROFF_FILES)
  89. @HAVE_A2X_TRUE@am__append_2 = $(man_ROFF_FILES) $(man_ROFF_FILES:.roff=)
  90. @HAVE_A2X_TRUE@am__append_3 = doc/tang-show-keys.1
  91. @HAVE_A2X_TRUE@am__append_4 = doc/tang.8
  92. subdir = .
  93. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  94. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  95. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  96. $(ACLOCAL_M4)
  97. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  98. $(am__configure_deps) $(dist_bin_SCRIPTS) \
  99. $(dist_libexec_SCRIPTS) $(am__DIST_COMMON)
  100. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  101. configure.lineno config.status.lineno
  102. mkinstalldirs = $(install_sh) -d
  103. CONFIG_CLEAN_FILES =
  104. CONFIG_CLEAN_VPATH_FILES =
  105. am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(bindir)" \
  106. "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(man1dir)" \
  107. "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(systemdsystemunitdir)"
  108. PROGRAMS = $(libexec_PROGRAMS)
  109. am__dirstamp = $(am__leading_dot)dirstamp
  110. am_src_tangd_OBJECTS = src/http.$(OBJEXT) src/tangd.$(OBJEXT)
  111. src_tangd_OBJECTS = $(am_src_tangd_OBJECTS)
  112. src_tangd_LDADD = $(LDADD)
  113. src_tangd_DEPENDENCIES =
  114. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  115. am__vpath_adj = case $$p in \
  116. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  117. *) f=$$p;; \
  118. esac;
  119. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  120. am__install_max = 40
  121. am__nobase_strip_setup = \
  122. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  123. am__nobase_strip = \
  124. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  125. am__nobase_list = $(am__nobase_strip_setup); \
  126. for p in $$list; do echo "$$p $$p"; done | \
  127. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  128. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  129. if (++n[$$2] == $(am__install_max)) \
  130. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  131. END { for (dir in files) print dir, files[dir] }'
  132. am__base_list = \
  133. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  134. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  135. am__uninstall_files_from_dir = { \
  136. test -z "$$files" \
  137. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  138. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  139. $(am__cd) "$$dir" && rm -f $$files; }; \
  140. }
  141. SCRIPTS = $(dist_bin_SCRIPTS) $(dist_libexec_SCRIPTS)
  142. AM_V_P = $(am__v_P_@AM_V@)
  143. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  144. am__v_P_0 = false
  145. am__v_P_1 = :
  146. AM_V_GEN = $(am__v_GEN_@AM_V@)
  147. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  148. am__v_GEN_0 = @echo " GEN " $@;
  149. am__v_GEN_1 =
  150. AM_V_at = $(am__v_at_@AM_V@)
  151. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  152. am__v_at_0 = @
  153. am__v_at_1 =
  154. DEFAULT_INCLUDES = -I.@am__isrc@
  155. depcomp = $(SHELL) $(top_srcdir)/depcomp
  156. am__depfiles_maybe = depfiles
  157. am__mv = mv -f
  158. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  159. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  160. AM_V_CC = $(am__v_CC_@AM_V@)
  161. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  162. am__v_CC_0 = @echo " CC " $@;
  163. am__v_CC_1 =
  164. CCLD = $(CC)
  165. LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
  166. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  167. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  168. am__v_CCLD_0 = @echo " CCLD " $@;
  169. am__v_CCLD_1 =
  170. SOURCES = $(src_tangd_SOURCES)
  171. DIST_SOURCES = $(src_tangd_SOURCES)
  172. am__can_run_installinfo = \
  173. case $$AM_UPDATE_INFO_DIR in \
  174. n|no|NO) false;; \
  175. *) (install-info --version) >/dev/null 2>&1;; \
  176. esac
  177. man1dir = $(mandir)/man1
  178. man8dir = $(mandir)/man8
  179. NROFF = nroff
  180. MANS = $(man1_MANS) $(man8_MANS)
  181. DATA = $(nodist_systemdsystemunit_DATA)
  182. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  183. # Read a list of newline-separated strings from the standard input,
  184. # and print each of them once, without duplicates. Input order is
  185. # *not* preserved.
  186. am__uniquify_input = $(AWK) '\
  187. BEGIN { nonempty = 0; } \
  188. { items[$$0] = 1; nonempty = 1; } \
  189. END { if (nonempty) { for (i in items) print i; }; } \
  190. '
  191. # Make sure the list of sources is unique. This is necessary because,
  192. # e.g., the same source file might be shared among _SOURCES variables
  193. # for different programs/libraries.
  194. am__define_uniq_tagged_files = \
  195. list='$(am__tagged_files)'; \
  196. unique=`for i in $$list; do \
  197. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  198. done | $(am__uniquify_input)`
  199. ETAGS = etags
  200. CTAGS = ctags
  201. CSCOPE = cscope
  202. AM_RECURSIVE_TARGETS = cscope check recheck
  203. am__tty_colors_dummy = \
  204. mgn= red= grn= lgn= blu= brg= std=; \
  205. am__color_tests=no
  206. am__tty_colors = { \
  207. $(am__tty_colors_dummy); \
  208. if test "X$(AM_COLOR_TESTS)" = Xno; then \
  209. am__color_tests=no; \
  210. elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
  211. am__color_tests=yes; \
  212. elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
  213. am__color_tests=yes; \
  214. fi; \
  215. if test $$am__color_tests = yes; then \
  216. red=''; \
  217. grn=''; \
  218. lgn=''; \
  219. blu=''; \
  220. mgn=''; \
  221. brg=''; \
  222. std=''; \
  223. fi; \
  224. }
  225. am__recheck_rx = ^[ ]*:recheck:[ ]*
  226. am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
  227. am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
  228. # A command that, given a newline-separated list of test names on the
  229. # standard input, print the name of the tests that are to be re-run
  230. # upon "make recheck".
  231. am__list_recheck_tests = $(AWK) '{ \
  232. recheck = 1; \
  233. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  234. { \
  235. if (rc < 0) \
  236. { \
  237. if ((getline line2 < ($$0 ".log")) < 0) \
  238. recheck = 0; \
  239. break; \
  240. } \
  241. else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
  242. { \
  243. recheck = 0; \
  244. break; \
  245. } \
  246. else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
  247. { \
  248. break; \
  249. } \
  250. }; \
  251. if (recheck) \
  252. print $$0; \
  253. close ($$0 ".trs"); \
  254. close ($$0 ".log"); \
  255. }'
  256. # A command that, given a newline-separated list of test names on the
  257. # standard input, create the global log from their .trs and .log files.
  258. am__create_global_log = $(AWK) ' \
  259. function fatal(msg) \
  260. { \
  261. print "fatal: making $@: " msg | "cat >&2"; \
  262. exit 1; \
  263. } \
  264. function rst_section(header) \
  265. { \
  266. print header; \
  267. len = length(header); \
  268. for (i = 1; i <= len; i = i + 1) \
  269. printf "="; \
  270. printf "\n\n"; \
  271. } \
  272. { \
  273. copy_in_global_log = 1; \
  274. global_test_result = "RUN"; \
  275. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  276. { \
  277. if (rc < 0) \
  278. fatal("failed to read from " $$0 ".trs"); \
  279. if (line ~ /$(am__global_test_result_rx)/) \
  280. { \
  281. sub("$(am__global_test_result_rx)", "", line); \
  282. sub("[ ]*$$", "", line); \
  283. global_test_result = line; \
  284. } \
  285. else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
  286. copy_in_global_log = 0; \
  287. }; \
  288. if (copy_in_global_log) \
  289. { \
  290. rst_section(global_test_result ": " $$0); \
  291. while ((rc = (getline line < ($$0 ".log"))) != 0) \
  292. { \
  293. if (rc < 0) \
  294. fatal("failed to read from " $$0 ".log"); \
  295. print line; \
  296. }; \
  297. printf "\n"; \
  298. }; \
  299. close ($$0 ".trs"); \
  300. close ($$0 ".log"); \
  301. }'
  302. # Restructured Text title.
  303. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
  304. # Solaris 10 'make', and several other traditional 'make' implementations,
  305. # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
  306. # by disabling -e (using the XSI extension "set +e") if it's set.
  307. am__sh_e_setup = case $$- in *e*) set +e;; esac
  308. # Default flags passed to test drivers.
  309. am__common_driver_flags = \
  310. --color-tests "$$am__color_tests" \
  311. --enable-hard-errors "$$am__enable_hard_errors" \
  312. --expect-failure "$$am__expect_failure"
  313. # To be inserted before the command running the test. Creates the
  314. # directory for the log if needed. Stores in $dir the directory
  315. # containing $f, in $tst the test, in $log the log. Executes the
  316. # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
  317. # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
  318. # will run the test scripts (or their associated LOG_COMPILER, if
  319. # thy have one).
  320. am__check_pre = \
  321. $(am__sh_e_setup); \
  322. $(am__vpath_adj_setup) $(am__vpath_adj) \
  323. $(am__tty_colors); \
  324. srcdir=$(srcdir); export srcdir; \
  325. case "$@" in \
  326. */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
  327. *) am__odir=.;; \
  328. esac; \
  329. test "x$$am__odir" = x"." || test -d "$$am__odir" \
  330. || $(MKDIR_P) "$$am__odir" || exit $$?; \
  331. if test -f "./$$f"; then dir=./; \
  332. elif test -f "$$f"; then dir=; \
  333. else dir="$(srcdir)/"; fi; \
  334. tst=$$dir$$f; log='$@'; \
  335. if test -n '$(DISABLE_HARD_ERRORS)'; then \
  336. am__enable_hard_errors=no; \
  337. else \
  338. am__enable_hard_errors=yes; \
  339. fi; \
  340. case " $(XFAIL_TESTS) " in \
  341. *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
  342. am__expect_failure=yes;; \
  343. *) \
  344. am__expect_failure=no;; \
  345. esac; \
  346. $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
  347. # A shell command to get the names of the tests scripts with any registered
  348. # extension removed (i.e., equivalently, the names of the test logs, with
  349. # the '.log' extension removed). The result is saved in the shell variable
  350. # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
  351. # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
  352. # since that might cause problem with VPATH rewrites for suffix-less tests.
  353. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
  354. am__set_TESTS_bases = \
  355. bases='$(TEST_LOGS)'; \
  356. bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
  357. bases=`echo $$bases`
  358. RECHECK_LOGS = $(TEST_LOGS)
  359. TEST_SUITE_LOG = test-suite.log
  360. TEST_EXTENSIONS = @EXEEXT@ .test
  361. LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
  362. LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
  363. am__set_b = \
  364. case '$@' in \
  365. */*) \
  366. case '$*' in \
  367. */*) b='$*';; \
  368. *) b=`echo '$@' | sed 's/\.log$$//'`; \
  369. esac;; \
  370. *) \
  371. b='$*';; \
  372. esac
  373. am__test_logs1 = $(TESTS:=.log)
  374. am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
  375. TEST_LOGS = $(am__test_logs2:.test.log=.log)
  376. TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
  377. TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
  378. $(TEST_LOG_FLAGS)
  379. am__DIST_COMMON = $(srcdir)/Makefile.in COPYING compile config.guess \
  380. config.sub depcomp install-sh missing test-driver
  381. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  382. distdir = $(PACKAGE)-$(VERSION)
  383. top_distdir = $(distdir)
  384. am__remove_distdir = \
  385. if test -d "$(distdir)"; then \
  386. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  387. && rm -rf "$(distdir)" \
  388. || { sleep 5 && rm -rf "$(distdir)"; }; \
  389. else :; fi
  390. am__post_remove_distdir = $(am__remove_distdir)
  391. GZIP_ENV = --best
  392. DIST_ARCHIVES = $(distdir).tar.bz2
  393. DIST_TARGETS = dist-bzip2
  394. distuninstallcheck_listfiles = find . -type f -print
  395. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  396. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  397. distcleancheck_listfiles = find . -type f -print
  398. A2X = @A2X@
  399. ACLOCAL = @ACLOCAL@
  400. AMTAR = @AMTAR@
  401. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  402. AUTOCONF = @AUTOCONF@
  403. AUTOHEADER = @AUTOHEADER@
  404. AUTOMAKE = @AUTOMAKE@
  405. AWK = @AWK@
  406. CC = @CC@
  407. CCDEPMODE = @CCDEPMODE@
  408. CFLAGS = @CFLAGS@
  409. CPPFLAGS = @CPPFLAGS@
  410. CYGPATH_W = @CYGPATH_W@
  411. DEFS = @DEFS@
  412. DEPDIR = @DEPDIR@
  413. ECHO_C = @ECHO_C@
  414. ECHO_N = @ECHO_N@
  415. ECHO_T = @ECHO_T@
  416. EXEEXT = @EXEEXT@
  417. INSTALL = @INSTALL@
  418. INSTALL_DATA = @INSTALL_DATA@
  419. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  420. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  421. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  422. LDFLAGS = @LDFLAGS@
  423. LIBOBJS = @LIBOBJS@
  424. LIBS = @LIBS@
  425. LTLIBOBJS = @LTLIBOBJS@
  426. MAKEINFO = @MAKEINFO@
  427. MKDIR_P = @MKDIR_P@
  428. OBJEXT = @OBJEXT@
  429. PACKAGE = @PACKAGE@
  430. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  431. PACKAGE_NAME = @PACKAGE_NAME@
  432. PACKAGE_STRING = @PACKAGE_STRING@
  433. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  434. PACKAGE_URL = @PACKAGE_URL@
  435. PACKAGE_VERSION = @PACKAGE_VERSION@
  436. PATH_SEPARATOR = @PATH_SEPARATOR@
  437. PKG_CONFIG = @PKG_CONFIG@
  438. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  439. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  440. SD_ACTIVATE = @SD_ACTIVATE@
  441. SED = @SED@
  442. SET_MAKE = @SET_MAKE@
  443. SHELL = @SHELL@
  444. STRIP = @STRIP@
  445. TANG_CFLAGS = @TANG_CFLAGS@
  446. VERSION = @VERSION@
  447. abs_builddir = @abs_builddir@
  448. abs_srcdir = @abs_srcdir@
  449. abs_top_builddir = @abs_top_builddir@
  450. abs_top_srcdir = @abs_top_srcdir@
  451. ac_ct_CC = @ac_ct_CC@
  452. am__include = @am__include@
  453. am__leading_dot = @am__leading_dot@
  454. am__quote = @am__quote@
  455. am__tar = @am__tar@
  456. am__untar = @am__untar@
  457. bindir = @bindir@
  458. build = @build@
  459. build_alias = @build_alias@
  460. build_cpu = @build_cpu@
  461. build_os = @build_os@
  462. build_vendor = @build_vendor@
  463. builddir = @builddir@
  464. datadir = @datadir@
  465. datarootdir = @datarootdir@
  466. dl_LIBS = @dl_LIBS@
  467. docdir = @docdir@
  468. dvidir = @dvidir@
  469. exec_prefix = @exec_prefix@
  470. host = @host@
  471. host_alias = @host_alias@
  472. host_cpu = @host_cpu@
  473. host_os = @host_os@
  474. host_vendor = @host_vendor@
  475. htmldir = @htmldir@
  476. http_parser_LIBS = @http_parser_LIBS@
  477. includedir = @includedir@
  478. infodir = @infodir@
  479. install_sh = @install_sh@
  480. jose_CFLAGS = @jose_CFLAGS@
  481. jose_LIBS = @jose_LIBS@
  482. libdir = @libdir@
  483. libexecdir = @libexecdir@
  484. localedir = @localedir@
  485. localstatedir = @localstatedir@
  486. mandir = @mandir@
  487. mkdir_p = @mkdir_p@
  488. oldincludedir = @oldincludedir@
  489. pdfdir = @pdfdir@
  490. prefix = @prefix@
  491. program_transform_name = @program_transform_name@
  492. psdir = @psdir@
  493. sbindir = @sbindir@
  494. sharedstatedir = @sharedstatedir@
  495. srcdir = @srcdir@
  496. sysconfdir = @sysconfdir@
  497. systemd_CFLAGS = @systemd_CFLAGS@
  498. systemd_LIBS = @systemd_LIBS@
  499. systemdsystemunitdir = @systemdsystemunitdir@
  500. target = @target@
  501. target_alias = @target_alias@
  502. target_cpu = @target_cpu@
  503. target_os = @target_os@
  504. target_vendor = @target_vendor@
  505. top_build_prefix = @top_build_prefix@
  506. top_builddir = @top_builddir@
  507. top_srcdir = @top_srcdir@
  508. DISTCHECK_CONFIGURE_FLAGS = --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
  509. BUILT_SOURCES = $(am__append_1)
  510. CLEANFILES = $(am__append_2) $(nodist_systemdsystemunit_DATA)
  511. man1_MANS = $(am__append_3)
  512. man8_MANS = $(am__append_4)
  513. AM_CFLAGS = @TANG_CFLAGS@ @jose_CFLAGS@
  514. LDADD = @jose_LIBS@ @http_parser_LIBS@
  515. cachedir = $(localstatedir)/cache/$(PACKAGE_NAME)
  516. jwkdir = $(localstatedir)/db/$(PACKAGE_NAME)
  517. nodist_systemdsystemunit_DATA = \
  518. units/tangd@.service \
  519. units/tangd.socket \
  520. units/tangd-update.path \
  521. units/tangd-update.service \
  522. units/tangd-keygen.service
  523. dist_libexec_SCRIPTS = src/tangd-update src/tangd-keygen
  524. dist_bin_SCRIPTS = src/tang-show-keys
  525. man_ADOC_FILES = \
  526. doc/tang-show-keys.1.adoc \
  527. doc/tang.8.adoc
  528. @HAVE_A2X_TRUE@man_ROFF_FILES = $(man_ADOC_FILES:.adoc=.roff)
  529. src_tangd_SOURCES = src/http.c src/http.h src/tangd.c
  530. AM_TESTS_ENVIRONMENT = SD_ACTIVATE="@SD_ACTIVATE@" PATH=$(srcdir)/src:$(builddir)/src:$(PATH)
  531. TESTS = tests/adv tests/rec
  532. EXTRA_DIST = \
  533. $(foreach unit,$(nodist_systemdsystemunit_DATA),$(unit).in) \
  534. COPYING \
  535. $(TESTS) \
  536. $(man_ADOC_FILES)
  537. all: $(BUILT_SOURCES)
  538. $(MAKE) $(AM_MAKEFLAGS) all-am
  539. .SUFFIXES:
  540. .SUFFIXES: .c .log .o .obj .test .test$(EXEEXT) .trs
  541. am--refresh: Makefile
  542. @:
  543. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  544. @for dep in $?; do \
  545. case '$(am__configure_deps)' in \
  546. *$$dep*) \
  547. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  548. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  549. && exit 0; \
  550. exit 1;; \
  551. esac; \
  552. done; \
  553. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  554. $(am__cd) $(top_srcdir) && \
  555. $(AUTOMAKE) --foreign Makefile
  556. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  557. @case '$?' in \
  558. *config.status*) \
  559. echo ' $(SHELL) ./config.status'; \
  560. $(SHELL) ./config.status;; \
  561. *) \
  562. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  563. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  564. esac;
  565. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  566. $(SHELL) ./config.status --recheck
  567. $(top_srcdir)/configure: $(am__configure_deps)
  568. $(am__cd) $(srcdir) && $(AUTOCONF)
  569. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  570. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  571. $(am__aclocal_m4_deps):
  572. install-libexecPROGRAMS: $(libexec_PROGRAMS)
  573. @$(NORMAL_INSTALL)
  574. @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
  575. if test -n "$$list"; then \
  576. echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \
  577. $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \
  578. fi; \
  579. for p in $$list; do echo "$$p $$p"; done | \
  580. sed 's/$(EXEEXT)$$//' | \
  581. while read p p1; do if test -f $$p \
  582. ; then echo "$$p"; echo "$$p"; else :; fi; \
  583. done | \
  584. sed -e 'p;s,.*/,,;n;h' \
  585. -e 's|.*|.|' \
  586. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  587. sed 'N;N;N;s,\n, ,g' | \
  588. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  589. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  590. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  591. else { print "f", $$3 "/" $$4, $$1; } } \
  592. END { for (d in files) print "f", d, files[d] }' | \
  593. while read type dir files; do \
  594. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  595. test -z "$$files" || { \
  596. echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
  597. $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
  598. } \
  599. ; done
  600. uninstall-libexecPROGRAMS:
  601. @$(NORMAL_UNINSTALL)
  602. @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
  603. files=`for p in $$list; do echo "$$p"; done | \
  604. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  605. -e 's/$$/$(EXEEXT)/' \
  606. `; \
  607. test -n "$$list" || exit 0; \
  608. echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
  609. cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
  610. clean-libexecPROGRAMS:
  611. -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS)
  612. src/$(am__dirstamp):
  613. @$(MKDIR_P) src
  614. @: > src/$(am__dirstamp)
  615. src/$(DEPDIR)/$(am__dirstamp):
  616. @$(MKDIR_P) src/$(DEPDIR)
  617. @: > src/$(DEPDIR)/$(am__dirstamp)
  618. src/http.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  619. src/tangd.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  620. src/tangd$(EXEEXT): $(src_tangd_OBJECTS) $(src_tangd_DEPENDENCIES) $(EXTRA_src_tangd_DEPENDENCIES) src/$(am__dirstamp)
  621. @rm -f src/tangd$(EXEEXT)
  622. $(AM_V_CCLD)$(LINK) $(src_tangd_OBJECTS) $(src_tangd_LDADD) $(LIBS)
  623. install-dist_binSCRIPTS: $(dist_bin_SCRIPTS)
  624. @$(NORMAL_INSTALL)
  625. @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
  626. if test -n "$$list"; then \
  627. echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
  628. $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
  629. fi; \
  630. for p in $$list; do \
  631. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  632. if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
  633. done | \
  634. sed -e 'p;s,.*/,,;n' \
  635. -e 'h;s|.*|.|' \
  636. -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
  637. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
  638. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  639. if ($$2 == $$4) { files[d] = files[d] " " $$1; \
  640. if (++n[d] == $(am__install_max)) { \
  641. print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
  642. else { print "f", d "/" $$4, $$1 } } \
  643. END { for (d in files) print "f", d, files[d] }' | \
  644. while read type dir files; do \
  645. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  646. test -z "$$files" || { \
  647. echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  648. $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  649. } \
  650. ; done
  651. uninstall-dist_binSCRIPTS:
  652. @$(NORMAL_UNINSTALL)
  653. @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
  654. files=`for p in $$list; do echo "$$p"; done | \
  655. sed -e 's,.*/,,;$(transform)'`; \
  656. dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir)
  657. install-dist_libexecSCRIPTS: $(dist_libexec_SCRIPTS)
  658. @$(NORMAL_INSTALL)
  659. @list='$(dist_libexec_SCRIPTS)'; test -n "$(libexecdir)" || list=; \
  660. if test -n "$$list"; then \
  661. echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \
  662. $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \
  663. fi; \
  664. for p in $$list; do \
  665. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  666. if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
  667. done | \
  668. sed -e 'p;s,.*/,,;n' \
  669. -e 'h;s|.*|.|' \
  670. -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
  671. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
  672. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  673. if ($$2 == $$4) { files[d] = files[d] " " $$1; \
  674. if (++n[d] == $(am__install_max)) { \
  675. print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
  676. else { print "f", d "/" $$4, $$1 } } \
  677. END { for (d in files) print "f", d, files[d] }' | \
  678. while read type dir files; do \
  679. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  680. test -z "$$files" || { \
  681. echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
  682. $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
  683. } \
  684. ; done
  685. uninstall-dist_libexecSCRIPTS:
  686. @$(NORMAL_UNINSTALL)
  687. @list='$(dist_libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \
  688. files=`for p in $$list; do echo "$$p"; done | \
  689. sed -e 's,.*/,,;$(transform)'`; \
  690. dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir)
  691. mostlyclean-compile:
  692. -rm -f *.$(OBJEXT)
  693. -rm -f src/*.$(OBJEXT)
  694. distclean-compile:
  695. -rm -f *.tab.c
  696. @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/http.Po@am__quote@
  697. @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/tangd.Po@am__quote@
  698. .c.o:
  699. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  700. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  701. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  702. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  703. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  704. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  705. .c.obj:
  706. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  707. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  708. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  709. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  710. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  711. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  712. install-man1: $(man1_MANS)
  713. @$(NORMAL_INSTALL)
  714. @list1='$(man1_MANS)'; \
  715. list2=''; \
  716. test -n "$(man1dir)" \
  717. && test -n "`echo $$list1$$list2`" \
  718. || exit 0; \
  719. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  720. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  721. { for i in $$list1; do echo "$$i"; done; \
  722. if test -n "$$list2"; then \
  723. for i in $$list2; do echo "$$i"; done \
  724. | sed -n '/\.1[a-z]*$$/p'; \
  725. fi; \
  726. } | while read p; do \
  727. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  728. echo "$$d$$p"; echo "$$p"; \
  729. done | \
  730. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  731. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  732. sed 'N;N;s,\n, ,g' | { \
  733. list=; while read file base inst; do \
  734. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  735. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  736. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  737. fi; \
  738. done; \
  739. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  740. while read files; do \
  741. test -z "$$files" || { \
  742. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  743. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  744. done; }
  745. uninstall-man1:
  746. @$(NORMAL_UNINSTALL)
  747. @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \
  748. files=`{ for i in $$list; do echo "$$i"; done; \
  749. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  750. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  751. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  752. install-man8: $(man8_MANS)
  753. @$(NORMAL_INSTALL)
  754. @list1='$(man8_MANS)'; \
  755. list2=''; \
  756. test -n "$(man8dir)" \
  757. && test -n "`echo $$list1$$list2`" \
  758. || exit 0; \
  759. echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
  760. $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
  761. { for i in $$list1; do echo "$$i"; done; \
  762. if test -n "$$list2"; then \
  763. for i in $$list2; do echo "$$i"; done \
  764. | sed -n '/\.8[a-z]*$$/p'; \
  765. fi; \
  766. } | while read p; do \
  767. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  768. echo "$$d$$p"; echo "$$p"; \
  769. done | \
  770. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
  771. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  772. sed 'N;N;s,\n, ,g' | { \
  773. list=; while read file base inst; do \
  774. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  775. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
  776. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
  777. fi; \
  778. done; \
  779. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  780. while read files; do \
  781. test -z "$$files" || { \
  782. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
  783. $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
  784. done; }
  785. uninstall-man8:
  786. @$(NORMAL_UNINSTALL)
  787. @list='$(man8_MANS)'; test -n "$(man8dir)" || exit 0; \
  788. files=`{ for i in $$list; do echo "$$i"; done; \
  789. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
  790. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  791. dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir)
  792. install-nodist_systemdsystemunitDATA: $(nodist_systemdsystemunit_DATA)
  793. @$(NORMAL_INSTALL)
  794. @list='$(nodist_systemdsystemunit_DATA)'; test -n "$(systemdsystemunitdir)" || list=; \
  795. if test -n "$$list"; then \
  796. echo " $(MKDIR_P) '$(DESTDIR)$(systemdsystemunitdir)'"; \
  797. $(MKDIR_P) "$(DESTDIR)$(systemdsystemunitdir)" || exit 1; \
  798. fi; \
  799. for p in $$list; do \
  800. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  801. echo "$$d$$p"; \
  802. done | $(am__base_list) | \
  803. while read files; do \
  804. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(systemdsystemunitdir)'"; \
  805. $(INSTALL_DATA) $$files "$(DESTDIR)$(systemdsystemunitdir)" || exit $$?; \
  806. done
  807. uninstall-nodist_systemdsystemunitDATA:
  808. @$(NORMAL_UNINSTALL)
  809. @list='$(nodist_systemdsystemunit_DATA)'; test -n "$(systemdsystemunitdir)" || list=; \
  810. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  811. dir='$(DESTDIR)$(systemdsystemunitdir)'; $(am__uninstall_files_from_dir)
  812. ID: $(am__tagged_files)
  813. $(am__define_uniq_tagged_files); mkid -fID $$unique
  814. tags: tags-am
  815. TAGS: tags
  816. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  817. set x; \
  818. here=`pwd`; \
  819. $(am__define_uniq_tagged_files); \
  820. shift; \
  821. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  822. test -n "$$unique" || unique=$$empty_fix; \
  823. if test $$# -gt 0; then \
  824. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  825. "$$@" $$unique; \
  826. else \
  827. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  828. $$unique; \
  829. fi; \
  830. fi
  831. ctags: ctags-am
  832. CTAGS: ctags
  833. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  834. $(am__define_uniq_tagged_files); \
  835. test -z "$(CTAGS_ARGS)$$unique" \
  836. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  837. $$unique
  838. GTAGS:
  839. here=`$(am__cd) $(top_builddir) && pwd` \
  840. && $(am__cd) $(top_srcdir) \
  841. && gtags -i $(GTAGS_ARGS) "$$here"
  842. cscope: cscope.files
  843. test ! -s cscope.files \
  844. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  845. clean-cscope:
  846. -rm -f cscope.files
  847. cscope.files: clean-cscope cscopelist
  848. cscopelist: cscopelist-am
  849. cscopelist-am: $(am__tagged_files)
  850. list='$(am__tagged_files)'; \
  851. case "$(srcdir)" in \
  852. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  853. *) sdir=$(subdir)/$(srcdir) ;; \
  854. esac; \
  855. for i in $$list; do \
  856. if test -f "$$i"; then \
  857. echo "$(subdir)/$$i"; \
  858. else \
  859. echo "$$sdir/$$i"; \
  860. fi; \
  861. done >> $(top_builddir)/cscope.files
  862. distclean-tags:
  863. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  864. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  865. # Recover from deleted '.trs' file; this should ensure that
  866. # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
  867. # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
  868. # to avoid problems with "make -n".
  869. .log.trs:
  870. rm -f $< $@
  871. $(MAKE) $(AM_MAKEFLAGS) $<
  872. # Leading 'am--fnord' is there to ensure the list of targets does not
  873. # expand to empty, as could happen e.g. with make check TESTS=''.
  874. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
  875. am--force-recheck:
  876. @:
  877. $(TEST_SUITE_LOG): $(TEST_LOGS)
  878. @$(am__set_TESTS_bases); \
  879. am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
  880. redo_bases=`for i in $$bases; do \
  881. am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
  882. done`; \
  883. if test -n "$$redo_bases"; then \
  884. redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
  885. redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
  886. if $(am__make_dryrun); then :; else \
  887. rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
  888. fi; \
  889. fi; \
  890. if test -n "$$am__remaking_logs"; then \
  891. echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
  892. "recursion detected" >&2; \
  893. elif test -n "$$redo_logs"; then \
  894. am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
  895. fi; \
  896. if $(am__make_dryrun); then :; else \
  897. st=0; \
  898. errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
  899. for i in $$redo_bases; do \
  900. test -f $$i.trs && test -r $$i.trs \
  901. || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
  902. test -f $$i.log && test -r $$i.log \
  903. || { echo "$$errmsg $$i.log" >&2; st=1; }; \
  904. done; \
  905. test $$st -eq 0 || exit 1; \
  906. fi
  907. @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
  908. ws='[ ]'; \
  909. results=`for b in $$bases; do echo $$b.trs; done`; \
  910. test -n "$$results" || results=/dev/null; \
  911. all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
  912. pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
  913. fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
  914. skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
  915. xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
  916. xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
  917. error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
  918. if test `expr $$fail + $$xpass + $$error` -eq 0; then \
  919. success=true; \
  920. else \
  921. success=false; \
  922. fi; \
  923. br='==================='; br=$$br$$br$$br$$br; \
  924. result_count () \
  925. { \
  926. if test x"$$1" = x"--maybe-color"; then \
  927. maybe_colorize=yes; \
  928. elif test x"$$1" = x"--no-color"; then \
  929. maybe_colorize=no; \
  930. else \
  931. echo "$@: invalid 'result_count' usage" >&2; exit 4; \
  932. fi; \
  933. shift; \
  934. desc=$$1 count=$$2; \
  935. if test $$maybe_colorize = yes && test $$count -gt 0; then \
  936. color_start=$$3 color_end=$$std; \
  937. else \
  938. color_start= color_end=; \
  939. fi; \
  940. echo "$${color_start}# $$desc $$count$${color_end}"; \
  941. }; \
  942. create_testsuite_report () \
  943. { \
  944. result_count $$1 "TOTAL:" $$all "$$brg"; \
  945. result_count $$1 "PASS: " $$pass "$$grn"; \
  946. result_count $$1 "SKIP: " $$skip "$$blu"; \
  947. result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
  948. result_count $$1 "FAIL: " $$fail "$$red"; \
  949. result_count $$1 "XPASS:" $$xpass "$$red"; \
  950. result_count $$1 "ERROR:" $$error "$$mgn"; \
  951. }; \
  952. { \
  953. echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
  954. $(am__rst_title); \
  955. create_testsuite_report --no-color; \
  956. echo; \
  957. echo ".. contents:: :depth: 2"; \
  958. echo; \
  959. for b in $$bases; do echo $$b; done \
  960. | $(am__create_global_log); \
  961. } >$(TEST_SUITE_LOG).tmp || exit 1; \
  962. mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
  963. if $$success; then \
  964. col="$$grn"; \
  965. else \
  966. col="$$red"; \
  967. test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
  968. fi; \
  969. echo "$${col}$$br$${std}"; \
  970. echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
  971. echo "$${col}$$br$${std}"; \
  972. create_testsuite_report --maybe-color; \
  973. echo "$$col$$br$$std"; \
  974. if $$success; then :; else \
  975. echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
  976. if test -n "$(PACKAGE_BUGREPORT)"; then \
  977. echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
  978. fi; \
  979. echo "$$col$$br$$std"; \
  980. fi; \
  981. $$success || exit 1
  982. check-TESTS:
  983. @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
  984. @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
  985. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  986. @set +e; $(am__set_TESTS_bases); \
  987. log_list=`for i in $$bases; do echo $$i.log; done`; \
  988. trs_list=`for i in $$bases; do echo $$i.trs; done`; \
  989. log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
  990. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
  991. exit $$?;
  992. recheck: all
  993. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  994. @set +e; $(am__set_TESTS_bases); \
  995. bases=`for i in $$bases; do echo $$i; done \
  996. | $(am__list_recheck_tests)` || exit 1; \
  997. log_list=`for i in $$bases; do echo $$i.log; done`; \
  998. log_list=`echo $$log_list`; \
  999. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
  1000. am__force_recheck=am--force-recheck \
  1001. TEST_LOGS="$$log_list"; \
  1002. exit $$?
  1003. tests/adv.log: tests/adv
  1004. @p='tests/adv'; \
  1005. b='tests/adv'; \
  1006. $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
  1007. --log-file $$b.log --trs-file $$b.trs \
  1008. $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
  1009. "$$tst" $(AM_TESTS_FD_REDIRECT)
  1010. tests/rec.log: tests/rec
  1011. @p='tests/rec'; \
  1012. b='tests/rec'; \
  1013. $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
  1014. --log-file $$b.log --trs-file $$b.trs \
  1015. $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
  1016. "$$tst" $(AM_TESTS_FD_REDIRECT)
  1017. .test.log:
  1018. @p='$<'; \
  1019. $(am__set_b); \
  1020. $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  1021. --log-file $$b.log --trs-file $$b.trs \
  1022. $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  1023. "$$tst" $(AM_TESTS_FD_REDIRECT)
  1024. @am__EXEEXT_TRUE@.test$(EXEEXT).log:
  1025. @am__EXEEXT_TRUE@ @p='$<'; \
  1026. @am__EXEEXT_TRUE@ $(am__set_b); \
  1027. @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  1028. @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
  1029. @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  1030. @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
  1031. distdir: $(DISTFILES)
  1032. $(am__remove_distdir)
  1033. test -d "$(distdir)" || mkdir "$(distdir)"
  1034. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  1035. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  1036. list='$(DISTFILES)'; \
  1037. dist_files=`for file in $$list; do echo $$file; done | \
  1038. sed -e "s|^$$srcdirstrip/||;t" \
  1039. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  1040. case $$dist_files in \
  1041. */*) $(MKDIR_P) `echo "$$dist_files" | \
  1042. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  1043. sort -u` ;; \
  1044. esac; \
  1045. for file in $$dist_files; do \
  1046. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  1047. if test -d $$d/$$file; then \
  1048. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  1049. if test -d "$(distdir)/$$file"; then \
  1050. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  1051. fi; \
  1052. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  1053. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  1054. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  1055. fi; \
  1056. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  1057. else \
  1058. test -f "$(distdir)/$$file" \
  1059. || cp -p $$d/$$file "$(distdir)/$$file" \
  1060. || exit 1; \
  1061. fi; \
  1062. done
  1063. -test -n "$(am__skip_mode_fix)" \
  1064. || find "$(distdir)" -type d ! -perm -755 \
  1065. -exec chmod u+rwx,go+rx {} \; -o \
  1066. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  1067. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  1068. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  1069. || chmod -R a+r "$(distdir)"
  1070. dist-gzip: distdir
  1071. tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
  1072. $(am__post_remove_distdir)
  1073. dist-bzip2: distdir
  1074. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  1075. $(am__post_remove_distdir)
  1076. dist-lzip: distdir
  1077. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  1078. $(am__post_remove_distdir)
  1079. dist-xz: distdir
  1080. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  1081. $(am__post_remove_distdir)
  1082. dist-tarZ: distdir
  1083. @echo WARNING: "Support for distribution archives compressed with" \
  1084. "legacy program 'compress' is deprecated." >&2
  1085. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  1086. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  1087. $(am__post_remove_distdir)
  1088. dist-shar: distdir
  1089. @echo WARNING: "Support for shar distribution archives is" \
  1090. "deprecated." >&2
  1091. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  1092. shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
  1093. $(am__post_remove_distdir)
  1094. dist-zip: distdir
  1095. -rm -f $(distdir).zip
  1096. zip -rq $(distdir).zip $(distdir)
  1097. $(am__post_remove_distdir)
  1098. dist dist-all:
  1099. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  1100. $(am__post_remove_distdir)
  1101. # This target untars the dist file and tries a VPATH configuration. Then
  1102. # it guarantees that the distribution is self-contained by making another
  1103. # tarfile.
  1104. distcheck: dist
  1105. case '$(DIST_ARCHIVES)' in \
  1106. *.tar.gz*) \
  1107. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
  1108. *.tar.bz2*) \
  1109. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  1110. *.tar.lz*) \
  1111. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  1112. *.tar.xz*) \
  1113. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  1114. *.tar.Z*) \
  1115. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  1116. *.shar.gz*) \
  1117. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
  1118. *.zip*) \
  1119. unzip $(distdir).zip ;;\
  1120. esac
  1121. chmod -R a-w $(distdir)
  1122. chmod u+w $(distdir)
  1123. mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
  1124. chmod a-w $(distdir)
  1125. test -d $(distdir)/_build || exit 0; \
  1126. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  1127. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  1128. && am__cwd=`pwd` \
  1129. && $(am__cd) $(distdir)/_build/sub \
  1130. && ../../configure \
  1131. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  1132. $(DISTCHECK_CONFIGURE_FLAGS) \
  1133. --srcdir=../.. --prefix="$$dc_install_base" \
  1134. && $(MAKE) $(AM_MAKEFLAGS) \
  1135. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  1136. && $(MAKE) $(AM_MAKEFLAGS) check \
  1137. && $(MAKE) $(AM_MAKEFLAGS) install \
  1138. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  1139. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  1140. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  1141. distuninstallcheck \
  1142. && chmod -R a-w "$$dc_install_base" \
  1143. && ({ \
  1144. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  1145. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  1146. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  1147. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  1148. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  1149. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  1150. && rm -rf "$$dc_destdir" \
  1151. && $(MAKE) $(AM_MAKEFLAGS) dist \
  1152. && rm -rf $(DIST_ARCHIVES) \
  1153. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  1154. && cd "$$am__cwd" \
  1155. || exit 1
  1156. $(am__post_remove_distdir)
  1157. @(echo "$(distdir) archives ready for distribution: "; \
  1158. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  1159. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  1160. distuninstallcheck:
  1161. @test -n '$(distuninstallcheck_dir)' || { \
  1162. echo 'ERROR: trying to run $@ with an empty' \
  1163. '$$(distuninstallcheck_dir)' >&2; \
  1164. exit 1; \
  1165. }; \
  1166. $(am__cd) '$(distuninstallcheck_dir)' || { \
  1167. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  1168. exit 1; \
  1169. }; \
  1170. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  1171. || { echo "ERROR: files left after uninstall:" ; \
  1172. if test -n "$(DESTDIR)"; then \
  1173. echo " (check DESTDIR support)"; \
  1174. fi ; \
  1175. $(distuninstallcheck_listfiles) ; \
  1176. exit 1; } >&2
  1177. distcleancheck: distclean
  1178. @if test '$(srcdir)' = . ; then \
  1179. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  1180. exit 1 ; \
  1181. fi
  1182. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  1183. || { echo "ERROR: files left in build directory after distclean:" ; \
  1184. $(distcleancheck_listfiles) ; \
  1185. exit 1; } >&2
  1186. check-am: all-am
  1187. $(MAKE) $(AM_MAKEFLAGS) check-TESTS
  1188. check: $(BUILT_SOURCES)
  1189. $(MAKE) $(AM_MAKEFLAGS) check-am
  1190. all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA)
  1191. installdirs:
  1192. for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(systemdsystemunitdir)"; do \
  1193. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  1194. done
  1195. install: $(BUILT_SOURCES)
  1196. $(MAKE) $(AM_MAKEFLAGS) install-am
  1197. install-exec: install-exec-am
  1198. install-data: install-data-am
  1199. uninstall: uninstall-am
  1200. install-am: all-am
  1201. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  1202. installcheck: installcheck-am
  1203. install-strip:
  1204. if test -z '$(STRIP)'; then \
  1205. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1206. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1207. install; \
  1208. else \
  1209. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1210. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1211. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  1212. fi
  1213. mostlyclean-generic:
  1214. -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
  1215. -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
  1216. -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  1217. clean-generic:
  1218. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  1219. distclean-generic:
  1220. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  1221. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  1222. -rm -f src/$(DEPDIR)/$(am__dirstamp)
  1223. -rm -f src/$(am__dirstamp)
  1224. maintainer-clean-generic:
  1225. @echo "This command is intended for maintainers to use"
  1226. @echo "it deletes files that may require special tools to rebuild."
  1227. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  1228. clean: clean-am
  1229. clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am
  1230. distclean: distclean-am
  1231. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1232. -rm -rf src/$(DEPDIR)
  1233. -rm -f Makefile
  1234. distclean-am: clean-am distclean-compile distclean-generic \
  1235. distclean-tags
  1236. dvi: dvi-am
  1237. dvi-am:
  1238. html: html-am
  1239. html-am:
  1240. info: info-am
  1241. info-am:
  1242. install-data-am: install-man install-nodist_systemdsystemunitDATA
  1243. install-dvi: install-dvi-am
  1244. install-dvi-am:
  1245. install-exec-am: install-dist_binSCRIPTS install-dist_libexecSCRIPTS \
  1246. install-libexecPROGRAMS
  1247. install-html: install-html-am
  1248. install-html-am:
  1249. install-info: install-info-am
  1250. install-info-am:
  1251. install-man: install-man1 install-man8
  1252. install-pdf: install-pdf-am
  1253. install-pdf-am:
  1254. install-ps: install-ps-am
  1255. install-ps-am:
  1256. installcheck-am:
  1257. maintainer-clean: maintainer-clean-am
  1258. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1259. -rm -rf $(top_srcdir)/autom4te.cache
  1260. -rm -rf src/$(DEPDIR)
  1261. -rm -f Makefile
  1262. maintainer-clean-am: distclean-am maintainer-clean-generic
  1263. mostlyclean: mostlyclean-am
  1264. mostlyclean-am: mostlyclean-compile mostlyclean-generic
  1265. pdf: pdf-am
  1266. pdf-am:
  1267. ps: ps-am
  1268. ps-am:
  1269. uninstall-am: uninstall-dist_binSCRIPTS uninstall-dist_libexecSCRIPTS \
  1270. uninstall-libexecPROGRAMS uninstall-man \
  1271. uninstall-nodist_systemdsystemunitDATA
  1272. uninstall-man: uninstall-man1 uninstall-man8
  1273. .MAKE: all check check-am install install-am install-strip
  1274. .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-TESTS \
  1275. check-am clean clean-cscope clean-generic \
  1276. clean-libexecPROGRAMS cscope cscopelist-am ctags ctags-am dist \
  1277. dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
  1278. dist-xz dist-zip distcheck distclean distclean-compile \
  1279. distclean-generic distclean-tags distcleancheck distdir \
  1280. distuninstallcheck dvi dvi-am html html-am info info-am \
  1281. install install-am install-data install-data-am \
  1282. install-dist_binSCRIPTS install-dist_libexecSCRIPTS \
  1283. install-dvi install-dvi-am install-exec install-exec-am \
  1284. install-html install-html-am install-info install-info-am \
  1285. install-libexecPROGRAMS install-man install-man1 install-man8 \
  1286. install-nodist_systemdsystemunitDATA install-pdf \
  1287. install-pdf-am install-ps install-ps-am install-strip \
  1288. installcheck installcheck-am installdirs maintainer-clean \
  1289. maintainer-clean-generic mostlyclean mostlyclean-compile \
  1290. mostlyclean-generic pdf pdf-am ps ps-am recheck tags tags-am \
  1291. uninstall uninstall-am uninstall-dist_binSCRIPTS \
  1292. uninstall-dist_libexecSCRIPTS uninstall-libexecPROGRAMS \
  1293. uninstall-man uninstall-man1 uninstall-man8 \
  1294. uninstall-nodist_systemdsystemunitDATA
  1295. .PRECIOUS: Makefile
  1296. @HAVE_A2X_TRUE@$(top_builddir)/%.roff: %.adoc
  1297. @HAVE_A2X_TRUE@ $(MKDIR_P) $$(dirname $@)
  1298. @HAVE_A2X_TRUE@ $(A2X) -f manpage $^ -D $(top_builddir)/$$(dirname $@)
  1299. @HAVE_A2X_TRUE@ $(INSTALL) -m 644 $(top_builddir)/$(@:.roff=) $(top_builddir)/$@
  1300. %: %.in
  1301. $(AM_V_GEN)mkdir -p "`dirname "$@"`"
  1302. $(AM_V_GEN)$(SED) \
  1303. -e 's,@libexecdir\@,$(libexecdir),g' \
  1304. -e 's,@jwkdir\@,$(jwkdir),g' \
  1305. -e 's,@cachedir\@,$(cachedir),g' \
  1306. $(srcdir)/$@.in > $@
  1307. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1308. # Otherwise a system limit (for SysV at least) may be exceeded.
  1309. .NOEXPORT: