Makefile.in 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  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. subdir = doc
  88. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  89. am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
  90. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  91. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  92. $(top_srcdir)/configure.ac
  93. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  94. $(ACLOCAL_M4)
  95. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  96. mkinstalldirs = $(install_sh) -d
  97. CONFIG_HEADER = $(top_builddir)/config.h
  98. CONFIG_CLEAN_FILES =
  99. CONFIG_CLEAN_VPATH_FILES =
  100. AM_V_P = $(am__v_P_@AM_V@)
  101. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  102. am__v_P_0 = false
  103. am__v_P_1 = :
  104. AM_V_GEN = $(am__v_GEN_@AM_V@)
  105. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  106. am__v_GEN_0 = @echo " GEN " $@;
  107. am__v_GEN_1 =
  108. AM_V_at = $(am__v_at_@AM_V@)
  109. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  110. am__v_at_0 = @
  111. am__v_at_1 =
  112. SOURCES =
  113. DIST_SOURCES =
  114. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  115. ctags-recursive dvi-recursive html-recursive info-recursive \
  116. install-data-recursive install-dvi-recursive \
  117. install-exec-recursive install-html-recursive \
  118. install-info-recursive install-pdf-recursive \
  119. install-ps-recursive install-recursive installcheck-recursive \
  120. installdirs-recursive pdf-recursive ps-recursive \
  121. tags-recursive uninstall-recursive
  122. am__can_run_installinfo = \
  123. case $$AM_UPDATE_INFO_DIR in \
  124. n|no|NO) false;; \
  125. *) (install-info --version) >/dev/null 2>&1;; \
  126. esac
  127. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  128. am__vpath_adj = case $$p in \
  129. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  130. *) f=$$p;; \
  131. esac;
  132. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  133. am__install_max = 40
  134. am__nobase_strip_setup = \
  135. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  136. am__nobase_strip = \
  137. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  138. am__nobase_list = $(am__nobase_strip_setup); \
  139. for p in $$list; do echo "$$p $$p"; done | \
  140. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  141. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  142. if (++n[$$2] == $(am__install_max)) \
  143. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  144. END { for (dir in files) print dir, files[dir] }'
  145. am__base_list = \
  146. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  147. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  148. am__uninstall_files_from_dir = { \
  149. test -z "$$files" \
  150. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  151. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  152. $(am__cd) "$$dir" && rm -f $$files; }; \
  153. }
  154. man8dir = $(mandir)/man8
  155. am__installdirs = "$(DESTDIR)$(man8dir)"
  156. NROFF = nroff
  157. MANS = $(dist_man8_MANS)
  158. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  159. distclean-recursive maintainer-clean-recursive
  160. am__recursive_targets = \
  161. $(RECURSIVE_TARGETS) \
  162. $(RECURSIVE_CLEAN_TARGETS) \
  163. $(am__extra_recursive_targets)
  164. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  165. distdir
  166. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  167. # Read a list of newline-separated strings from the standard input,
  168. # and print each of them once, without duplicates. Input order is
  169. # *not* preserved.
  170. am__uniquify_input = $(AWK) '\
  171. BEGIN { nonempty = 0; } \
  172. { items[$$0] = 1; nonempty = 1; } \
  173. END { if (nonempty) { for (i in items) print i; }; } \
  174. '
  175. # Make sure the list of sources is unique. This is necessary because,
  176. # e.g., the same source file might be shared among _SOURCES variables
  177. # for different programs/libraries.
  178. am__define_uniq_tagged_files = \
  179. list='$(am__tagged_files)'; \
  180. unique=`for i in $$list; do \
  181. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  182. done | $(am__uniquify_input)`
  183. ETAGS = etags
  184. CTAGS = ctags
  185. DIST_SUBDIRS = $(SUBDIRS)
  186. am__DIST_COMMON = $(dist_man8_MANS) $(srcdir)/Makefile.in
  187. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  188. am__relativize = \
  189. dir0=`pwd`; \
  190. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  191. sed_rest='s,^[^/]*/*,,'; \
  192. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  193. sed_butlast='s,/*[^/]*$$,,'; \
  194. while test -n "$$dir1"; do \
  195. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  196. if test "$$first" != "."; then \
  197. if test "$$first" = ".."; then \
  198. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  199. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  200. else \
  201. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  202. if test "$$first2" = "$$first"; then \
  203. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  204. else \
  205. dir2="../$$dir2"; \
  206. fi; \
  207. dir0="$$dir0"/"$$first"; \
  208. fi; \
  209. fi; \
  210. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  211. done; \
  212. reldir="$$dir2"
  213. ACLOCAL = @ACLOCAL@
  214. AMTAR = @AMTAR@
  215. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  216. AR = @AR@
  217. ATTR_LIB = @ATTR_LIB@
  218. AUTOCONF = @AUTOCONF@
  219. AUTOHEADER = @AUTOHEADER@
  220. AUTOMAKE = @AUTOMAKE@
  221. AWK = @AWK@
  222. BZ_LIB = @BZ_LIB@
  223. CC = @CC@
  224. CCDEPMODE = @CCDEPMODE@
  225. CFLAGS = @CFLAGS@
  226. CPP = @CPP@
  227. CPPFLAGS = @CPPFLAGS@
  228. CRYPT_LIB = @CRYPT_LIB@
  229. CYGPATH_W = @CYGPATH_W@
  230. DEFS = @DEFS@
  231. DEPDIR = @DEPDIR@
  232. DLLTOOL = @DLLTOOL@
  233. DL_LIB = @DL_LIB@
  234. DSYMUTIL = @DSYMUTIL@
  235. DUMPBIN = @DUMPBIN@
  236. ECHO_C = @ECHO_C@
  237. ECHO_N = @ECHO_N@
  238. ECHO_T = @ECHO_T@
  239. EGREP = @EGREP@
  240. EXEEXT = @EXEEXT@
  241. FAM_CFLAGS = @FAM_CFLAGS@
  242. FAM_LIBS = @FAM_LIBS@
  243. FGREP = @FGREP@
  244. GDBM_LIB = @GDBM_LIB@
  245. GREP = @GREP@
  246. INSTALL = @INSTALL@
  247. INSTALL_DATA = @INSTALL_DATA@
  248. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  249. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  250. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  251. LBER_LIB = @LBER_LIB@
  252. LD = @LD@
  253. LDAP_LIB = @LDAP_LIB@
  254. LDFLAGS = @LDFLAGS@
  255. LIBEV_CFLAGS = @LIBEV_CFLAGS@
  256. LIBEV_LIBS = @LIBEV_LIBS@
  257. LIBOBJS = @LIBOBJS@
  258. LIBS = @LIBS@
  259. LIBTOOL = @LIBTOOL@
  260. LIPO = @LIPO@
  261. LN_S = @LN_S@
  262. LTLIBOBJS = @LTLIBOBJS@
  263. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  264. LUA_CFLAGS = @LUA_CFLAGS@
  265. LUA_LIBS = @LUA_LIBS@
  266. MAKEINFO = @MAKEINFO@
  267. MANIFEST_TOOL = @MANIFEST_TOOL@
  268. MEMCACHE_LIB = @MEMCACHE_LIB@
  269. MKDIR_P = @MKDIR_P@
  270. MYSQL_CONFIG = @MYSQL_CONFIG@
  271. MYSQL_INCLUDE = @MYSQL_INCLUDE@
  272. MYSQL_LIBS = @MYSQL_LIBS@
  273. NM = @NM@
  274. NMEDIT = @NMEDIT@
  275. OBJDUMP = @OBJDUMP@
  276. OBJEXT = @OBJEXT@
  277. OTOOL = @OTOOL@
  278. OTOOL64 = @OTOOL64@
  279. PACKAGE = @PACKAGE@
  280. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  281. PACKAGE_NAME = @PACKAGE_NAME@
  282. PACKAGE_STRING = @PACKAGE_STRING@
  283. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  284. PACKAGE_URL = @PACKAGE_URL@
  285. PACKAGE_VERSION = @PACKAGE_VERSION@
  286. PATH_SEPARATOR = @PATH_SEPARATOR@
  287. PCRECONFIG = @PCRECONFIG@
  288. PCRE_LIB = @PCRE_LIB@
  289. PKG_CONFIG = @PKG_CONFIG@
  290. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  291. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  292. RANLIB = @RANLIB@
  293. SED = @SED@
  294. SENDFILE_LIB = @SENDFILE_LIB@
  295. SET_MAKE = @SET_MAKE@
  296. SHELL = @SHELL@
  297. SQLITE_CFLAGS = @SQLITE_CFLAGS@
  298. SQLITE_LIBS = @SQLITE_LIBS@
  299. SSL_LIB = @SSL_LIB@
  300. STRIP = @STRIP@
  301. UUID_LIBS = @UUID_LIBS@
  302. VERSION = @VERSION@
  303. XML_CFLAGS = @XML_CFLAGS@
  304. XML_LIBS = @XML_LIBS@
  305. Z_LIB = @Z_LIB@
  306. abs_builddir = @abs_builddir@
  307. abs_srcdir = @abs_srcdir@
  308. abs_top_builddir = @abs_top_builddir@
  309. abs_top_srcdir = @abs_top_srcdir@
  310. ac_ct_AR = @ac_ct_AR@
  311. ac_ct_CC = @ac_ct_CC@
  312. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  313. am__include = @am__include@
  314. am__leading_dot = @am__leading_dot@
  315. am__quote = @am__quote@
  316. am__tar = @am__tar@
  317. am__untar = @am__untar@
  318. bindir = @bindir@
  319. build = @build@
  320. build_alias = @build_alias@
  321. build_cpu = @build_cpu@
  322. build_os = @build_os@
  323. build_vendor = @build_vendor@
  324. builddir = @builddir@
  325. datadir = @datadir@
  326. datarootdir = @datarootdir@
  327. docdir = @docdir@
  328. dvidir = @dvidir@
  329. exec_prefix = @exec_prefix@
  330. host = @host@
  331. host_alias = @host_alias@
  332. host_cpu = @host_cpu@
  333. host_os = @host_os@
  334. host_vendor = @host_vendor@
  335. htmldir = @htmldir@
  336. includedir = @includedir@
  337. infodir = @infodir@
  338. install_sh = @install_sh@
  339. libdir = @libdir@
  340. libexecdir = @libexecdir@
  341. localedir = @localedir@
  342. localstatedir = @localstatedir@
  343. mandir = @mandir@
  344. mkdir_p = @mkdir_p@
  345. oldincludedir = @oldincludedir@
  346. pdfdir = @pdfdir@
  347. prefix = @prefix@
  348. program_transform_name = @program_transform_name@
  349. psdir = @psdir@
  350. runstatedir = @runstatedir@
  351. sbindir = @sbindir@
  352. sharedstatedir = @sharedstatedir@
  353. srcdir = @srcdir@
  354. sysconfdir = @sysconfdir@
  355. target = @target@
  356. target_alias = @target_alias@
  357. target_cpu = @target_cpu@
  358. target_os = @target_os@
  359. target_vendor = @target_vendor@
  360. top_build_prefix = @top_build_prefix@
  361. top_builddir = @top_builddir@
  362. top_srcdir = @top_srcdir@
  363. SUBDIRS = config scripts initscripts systemd outdated
  364. dist_man8_MANS = lighttpd.8
  365. EXTRA_DIST = \
  366. newstyle.css \
  367. oldstyle.css
  368. all: all-recursive
  369. .SUFFIXES:
  370. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  371. @for dep in $?; do \
  372. case '$(am__configure_deps)' in \
  373. *$$dep*) \
  374. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  375. && { if test -f $@; then exit 0; else break; fi; }; \
  376. exit 1;; \
  377. esac; \
  378. done; \
  379. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \
  380. $(am__cd) $(top_srcdir) && \
  381. $(AUTOMAKE) --foreign doc/Makefile
  382. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  383. @case '$?' in \
  384. *config.status*) \
  385. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  386. *) \
  387. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  388. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  389. esac;
  390. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  391. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  392. $(top_srcdir)/configure: $(am__configure_deps)
  393. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  394. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  395. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  396. $(am__aclocal_m4_deps):
  397. mostlyclean-libtool:
  398. -rm -f *.lo
  399. clean-libtool:
  400. -rm -rf .libs _libs
  401. install-man8: $(dist_man8_MANS)
  402. @$(NORMAL_INSTALL)
  403. @list1='$(dist_man8_MANS)'; \
  404. list2=''; \
  405. test -n "$(man8dir)" \
  406. && test -n "`echo $$list1$$list2`" \
  407. || exit 0; \
  408. echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
  409. $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
  410. { for i in $$list1; do echo "$$i"; done; \
  411. if test -n "$$list2"; then \
  412. for i in $$list2; do echo "$$i"; done \
  413. | sed -n '/\.8[a-z]*$$/p'; \
  414. fi; \
  415. } | while read p; do \
  416. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  417. echo "$$d$$p"; echo "$$p"; \
  418. done | \
  419. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
  420. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  421. sed 'N;N;s,\n, ,g' | { \
  422. list=; while read file base inst; do \
  423. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  424. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
  425. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
  426. fi; \
  427. done; \
  428. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  429. while read files; do \
  430. test -z "$$files" || { \
  431. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
  432. $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
  433. done; }
  434. uninstall-man8:
  435. @$(NORMAL_UNINSTALL)
  436. @list='$(dist_man8_MANS)'; test -n "$(man8dir)" || exit 0; \
  437. files=`{ for i in $$list; do echo "$$i"; done; \
  438. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
  439. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  440. dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir)
  441. # This directory's subdirectories are mostly independent; you can cd
  442. # into them and run 'make' without going through this Makefile.
  443. # To change the values of 'make' variables: instead of editing Makefiles,
  444. # (1) if the variable is set in 'config.status', edit 'config.status'
  445. # (which will cause the Makefiles to be regenerated when you run 'make');
  446. # (2) otherwise, pass the desired values on the 'make' command line.
  447. $(am__recursive_targets):
  448. @fail=; \
  449. if $(am__make_keepgoing); then \
  450. failcom='fail=yes'; \
  451. else \
  452. failcom='exit 1'; \
  453. fi; \
  454. dot_seen=no; \
  455. target=`echo $@ | sed s/-recursive//`; \
  456. case "$@" in \
  457. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  458. *) list='$(SUBDIRS)' ;; \
  459. esac; \
  460. for subdir in $$list; do \
  461. echo "Making $$target in $$subdir"; \
  462. if test "$$subdir" = "."; then \
  463. dot_seen=yes; \
  464. local_target="$$target-am"; \
  465. else \
  466. local_target="$$target"; \
  467. fi; \
  468. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  469. || eval $$failcom; \
  470. done; \
  471. if test "$$dot_seen" = "no"; then \
  472. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  473. fi; test -z "$$fail"
  474. ID: $(am__tagged_files)
  475. $(am__define_uniq_tagged_files); mkid -fID $$unique
  476. tags: tags-recursive
  477. TAGS: tags
  478. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  479. set x; \
  480. here=`pwd`; \
  481. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  482. include_option=--etags-include; \
  483. empty_fix=.; \
  484. else \
  485. include_option=--include; \
  486. empty_fix=; \
  487. fi; \
  488. list='$(SUBDIRS)'; for subdir in $$list; do \
  489. if test "$$subdir" = .; then :; else \
  490. test ! -f $$subdir/TAGS || \
  491. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  492. fi; \
  493. done; \
  494. $(am__define_uniq_tagged_files); \
  495. shift; \
  496. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  497. test -n "$$unique" || unique=$$empty_fix; \
  498. if test $$# -gt 0; then \
  499. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  500. "$$@" $$unique; \
  501. else \
  502. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  503. $$unique; \
  504. fi; \
  505. fi
  506. ctags: ctags-recursive
  507. CTAGS: ctags
  508. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  509. $(am__define_uniq_tagged_files); \
  510. test -z "$(CTAGS_ARGS)$$unique" \
  511. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  512. $$unique
  513. GTAGS:
  514. here=`$(am__cd) $(top_builddir) && pwd` \
  515. && $(am__cd) $(top_srcdir) \
  516. && gtags -i $(GTAGS_ARGS) "$$here"
  517. cscopelist: cscopelist-recursive
  518. cscopelist-am: $(am__tagged_files)
  519. list='$(am__tagged_files)'; \
  520. case "$(srcdir)" in \
  521. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  522. *) sdir=$(subdir)/$(srcdir) ;; \
  523. esac; \
  524. for i in $$list; do \
  525. if test -f "$$i"; then \
  526. echo "$(subdir)/$$i"; \
  527. else \
  528. echo "$$sdir/$$i"; \
  529. fi; \
  530. done >> $(top_builddir)/cscope.files
  531. distclean-tags:
  532. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  533. distdir: $(DISTFILES)
  534. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  535. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  536. list='$(DISTFILES)'; \
  537. dist_files=`for file in $$list; do echo $$file; done | \
  538. sed -e "s|^$$srcdirstrip/||;t" \
  539. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  540. case $$dist_files in \
  541. */*) $(MKDIR_P) `echo "$$dist_files" | \
  542. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  543. sort -u` ;; \
  544. esac; \
  545. for file in $$dist_files; do \
  546. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  547. if test -d $$d/$$file; then \
  548. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  549. if test -d "$(distdir)/$$file"; then \
  550. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  551. fi; \
  552. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  553. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  554. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  555. fi; \
  556. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  557. else \
  558. test -f "$(distdir)/$$file" \
  559. || cp -p $$d/$$file "$(distdir)/$$file" \
  560. || exit 1; \
  561. fi; \
  562. done
  563. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  564. if test "$$subdir" = .; then :; else \
  565. $(am__make_dryrun) \
  566. || test -d "$(distdir)/$$subdir" \
  567. || $(MKDIR_P) "$(distdir)/$$subdir" \
  568. || exit 1; \
  569. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  570. $(am__relativize); \
  571. new_distdir=$$reldir; \
  572. dir1=$$subdir; dir2="$(top_distdir)"; \
  573. $(am__relativize); \
  574. new_top_distdir=$$reldir; \
  575. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  576. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  577. ($(am__cd) $$subdir && \
  578. $(MAKE) $(AM_MAKEFLAGS) \
  579. top_distdir="$$new_top_distdir" \
  580. distdir="$$new_distdir" \
  581. am__remove_distdir=: \
  582. am__skip_length_check=: \
  583. am__skip_mode_fix=: \
  584. distdir) \
  585. || exit 1; \
  586. fi; \
  587. done
  588. check-am: all-am
  589. check: check-recursive
  590. all-am: Makefile $(MANS)
  591. installdirs: installdirs-recursive
  592. installdirs-am:
  593. for dir in "$(DESTDIR)$(man8dir)"; do \
  594. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  595. done
  596. install: install-recursive
  597. install-exec: install-exec-recursive
  598. install-data: install-data-recursive
  599. uninstall: uninstall-recursive
  600. install-am: all-am
  601. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  602. installcheck: installcheck-recursive
  603. install-strip:
  604. if test -z '$(STRIP)'; then \
  605. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  606. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  607. install; \
  608. else \
  609. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  610. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  611. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  612. fi
  613. mostlyclean-generic:
  614. clean-generic:
  615. distclean-generic:
  616. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  617. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  618. maintainer-clean-generic:
  619. @echo "This command is intended for maintainers to use"
  620. @echo "it deletes files that may require special tools to rebuild."
  621. clean: clean-recursive
  622. clean-am: clean-generic clean-libtool mostlyclean-am
  623. distclean: distclean-recursive
  624. -rm -f Makefile
  625. distclean-am: clean-am distclean-generic distclean-tags
  626. dvi: dvi-recursive
  627. dvi-am:
  628. html: html-recursive
  629. html-am:
  630. info: info-recursive
  631. info-am:
  632. install-data-am: install-man
  633. install-dvi: install-dvi-recursive
  634. install-dvi-am:
  635. install-exec-am:
  636. install-html: install-html-recursive
  637. install-html-am:
  638. install-info: install-info-recursive
  639. install-info-am:
  640. install-man: install-man8
  641. install-pdf: install-pdf-recursive
  642. install-pdf-am:
  643. install-ps: install-ps-recursive
  644. install-ps-am:
  645. installcheck-am:
  646. maintainer-clean: maintainer-clean-recursive
  647. -rm -f Makefile
  648. maintainer-clean-am: distclean-am maintainer-clean-generic
  649. mostlyclean: mostlyclean-recursive
  650. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  651. pdf: pdf-recursive
  652. pdf-am:
  653. ps: ps-recursive
  654. ps-am:
  655. uninstall-am: uninstall-man
  656. uninstall-man: uninstall-man8
  657. .MAKE: $(am__recursive_targets) install-am install-strip
  658. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
  659. check-am clean clean-generic clean-libtool cscopelist-am ctags \
  660. ctags-am distclean distclean-generic distclean-libtool \
  661. distclean-tags distdir dvi dvi-am html html-am info info-am \
  662. install install-am install-data install-data-am install-dvi \
  663. install-dvi-am install-exec install-exec-am install-html \
  664. install-html-am install-info install-info-am install-man \
  665. install-man8 install-pdf install-pdf-am install-ps \
  666. install-ps-am install-strip installcheck installcheck-am \
  667. installdirs installdirs-am maintainer-clean \
  668. maintainer-clean-generic mostlyclean mostlyclean-generic \
  669. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  670. uninstall-am uninstall-man uninstall-man8
  671. .PRECIOUS: Makefile
  672. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  673. # Otherwise a system limit (for SysV at least) may be exceeded.
  674. .NOEXPORT: