Makefile.in 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. # Makefile.in generated by automake 1.16.5 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2021 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. #
  13. # __ __ _
  14. # ___\ \/ /_ __ __ _| |_
  15. # / _ \\ /| '_ \ / _` | __|
  16. # | __// \| |_) | (_| | |_
  17. # \___/_/\_\ .__/ \__,_|\__|
  18. # |_| XML parser
  19. #
  20. # Copyright (c) 2017-2021 Sebastian Pipping <[email protected]>
  21. # Copyright (c) 2017 Stephen Groat <[email protected]>
  22. # Copyright (c) 2017 Joe Orton <[email protected]>
  23. # Licensed under the MIT license:
  24. #
  25. # Permission is hereby granted, free of charge, to any person obtaining
  26. # a copy of this software and associated documentation files (the
  27. # "Software"), to deal in the Software without restriction, including
  28. # without limitation the rights to use, copy, modify, merge, publish,
  29. # distribute, sublicense, and/or sell copies of the Software, and to permit
  30. # persons to whom the Software is furnished to do so, subject to the
  31. # following conditions:
  32. #
  33. # The above copyright notice and this permission notice shall be included
  34. # in all copies or substantial portions of the Software.
  35. #
  36. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  37. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  38. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  39. # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  40. # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  41. # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  42. # USE OR OTHER DEALINGS IN THE SOFTWARE.
  43. VPATH = @srcdir@
  44. am__is_gnu_make = { \
  45. if test -z '$(MAKELEVEL)'; then \
  46. false; \
  47. elif test -n '$(MAKE_HOST)'; then \
  48. true; \
  49. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  50. true; \
  51. else \
  52. false; \
  53. fi; \
  54. }
  55. am__make_running_with_option = \
  56. case $${target_option-} in \
  57. ?) ;; \
  58. *) echo "am__make_running_with_option: internal error: invalid" \
  59. "target option '$${target_option-}' specified" >&2; \
  60. exit 1;; \
  61. esac; \
  62. has_opt=no; \
  63. sane_makeflags=$$MAKEFLAGS; \
  64. if $(am__is_gnu_make); then \
  65. sane_makeflags=$$MFLAGS; \
  66. else \
  67. case $$MAKEFLAGS in \
  68. *\\[\ \ ]*) \
  69. bs=\\; \
  70. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  71. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  72. esac; \
  73. fi; \
  74. skip_next=no; \
  75. strip_trailopt () \
  76. { \
  77. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  78. }; \
  79. for flg in $$sane_makeflags; do \
  80. test $$skip_next = yes && { skip_next=no; continue; }; \
  81. case $$flg in \
  82. *=*|--*) continue;; \
  83. -*I) strip_trailopt 'I'; skip_next=yes;; \
  84. -*I?*) strip_trailopt 'I';; \
  85. -*O) strip_trailopt 'O'; skip_next=yes;; \
  86. -*O?*) strip_trailopt 'O';; \
  87. -*l) strip_trailopt 'l'; skip_next=yes;; \
  88. -*l?*) strip_trailopt 'l';; \
  89. -[dEDm]) skip_next=yes;; \
  90. -[JT]) skip_next=yes;; \
  91. esac; \
  92. case $$flg in \
  93. *$$target_option*) has_opt=yes; break;; \
  94. esac; \
  95. done; \
  96. test $$has_opt = yes
  97. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  98. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  99. pkgdatadir = $(datadir)/@PACKAGE@
  100. pkgincludedir = $(includedir)/@PACKAGE@
  101. pkglibdir = $(libdir)/@PACKAGE@
  102. pkglibexecdir = $(libexecdir)/@PACKAGE@
  103. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  104. install_sh_DATA = $(install_sh) -c -m 644
  105. install_sh_PROGRAM = $(install_sh) -c
  106. install_sh_SCRIPT = $(install_sh) -c
  107. INSTALL_HEADER = $(INSTALL_DATA)
  108. transform = $(program_transform_name)
  109. NORMAL_INSTALL = :
  110. PRE_INSTALL = :
  111. POST_INSTALL = :
  112. NORMAL_UNINSTALL = :
  113. PRE_UNINSTALL = :
  114. POST_UNINSTALL = :
  115. build_triplet = @build@
  116. host_triplet = @host@
  117. subdir = doc
  118. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  119. am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
  120. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  121. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  122. $(top_srcdir)/acinclude.m4 \
  123. $(top_srcdir)/conftools/ax-require-defined.m4 \
  124. $(top_srcdir)/conftools/ax-check-compile-flag.m4 \
  125. $(top_srcdir)/conftools/ax-check-link-flag.m4 \
  126. $(top_srcdir)/conftools/ax-append-flag.m4 \
  127. $(top_srcdir)/conftools/ax-append-compile-flags.m4 \
  128. $(top_srcdir)/conftools/ax-append-link-flags.m4 \
  129. $(top_srcdir)/conftools/expatcfg-compiler-supports-visibility.m4 \
  130. $(top_srcdir)/configure.ac
  131. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  132. $(ACLOCAL_M4)
  133. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  134. mkinstalldirs = $(install_sh) -d
  135. CONFIG_HEADER = $(top_builddir)/expat_config.h
  136. CONFIG_CLEAN_FILES =
  137. CONFIG_CLEAN_VPATH_FILES =
  138. AM_V_P = $(am__v_P_@AM_V@)
  139. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  140. am__v_P_0 = false
  141. am__v_P_1 = :
  142. AM_V_GEN = $(am__v_GEN_@AM_V@)
  143. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  144. am__v_GEN_0 = @echo " GEN " $@;
  145. am__v_GEN_1 =
  146. AM_V_at = $(am__v_at_@AM_V@)
  147. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  148. am__v_at_0 = @
  149. am__v_at_1 =
  150. SOURCES =
  151. DIST_SOURCES =
  152. am__can_run_installinfo = \
  153. case $$AM_UPDATE_INFO_DIR in \
  154. n|no|NO) false;; \
  155. *) (install-info --version) >/dev/null 2>&1;; \
  156. esac
  157. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  158. am__vpath_adj = case $$p in \
  159. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  160. *) f=$$p;; \
  161. esac;
  162. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  163. am__install_max = 40
  164. am__nobase_strip_setup = \
  165. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  166. am__nobase_strip = \
  167. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  168. am__nobase_list = $(am__nobase_strip_setup); \
  169. for p in $$list; do echo "$$p $$p"; done | \
  170. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  171. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  172. if (++n[$$2] == $(am__install_max)) \
  173. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  174. END { for (dir in files) print dir, files[dir] }'
  175. am__base_list = \
  176. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  177. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  178. am__uninstall_files_from_dir = { \
  179. test -z "$$files" \
  180. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  181. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  182. $(am__cd) "$$dir" && rm -f $$files; }; \
  183. }
  184. man1dir = $(mandir)/man1
  185. am__installdirs = "$(DESTDIR)$(man1dir)"
  186. NROFF = nroff
  187. MANS = $(dist_man_MANS)
  188. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  189. am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in
  190. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  191. ACLOCAL = @ACLOCAL@
  192. AMTAR = @AMTAR@
  193. AM_CFLAGS = @AM_CFLAGS@
  194. AM_CPPFLAGS = @AM_CPPFLAGS@
  195. AM_CXXFLAGS = @AM_CXXFLAGS@
  196. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  197. AM_LDFLAGS = @AM_LDFLAGS@
  198. AR = @AR@
  199. AS = @AS@
  200. AUTOCONF = @AUTOCONF@
  201. AUTOHEADER = @AUTOHEADER@
  202. AUTOMAKE = @AUTOMAKE@
  203. AWK = @AWK@
  204. CC = @CC@
  205. CCDEPMODE = @CCDEPMODE@
  206. CFLAGS = @CFLAGS@
  207. CPPFLAGS = @CPPFLAGS@
  208. CSCOPE = @CSCOPE@
  209. CTAGS = @CTAGS@
  210. CXX = @CXX@
  211. CXXCPP = @CXXCPP@
  212. CXXDEPMODE = @CXXDEPMODE@
  213. CXXFLAGS = @CXXFLAGS@
  214. CYGPATH_W = @CYGPATH_W@
  215. DEFS = @DEFS@
  216. DEPDIR = @DEPDIR@
  217. DLLTOOL = @DLLTOOL@
  218. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  219. DSYMUTIL = @DSYMUTIL@
  220. DUMPBIN = @DUMPBIN@
  221. ECHO_C = @ECHO_C@
  222. ECHO_N = @ECHO_N@
  223. ECHO_T = @ECHO_T@
  224. EGREP = @EGREP@
  225. ETAGS = @ETAGS@
  226. EXEEXT = @EXEEXT@
  227. EXPAT_ATTR_INFO = @EXPAT_ATTR_INFO@
  228. EXPAT_CHAR_TYPE = @EXPAT_CHAR_TYPE@
  229. EXPAT_CONTEXT_BYTES = @EXPAT_CONTEXT_BYTES@
  230. EXPAT_DTD = @EXPAT_DTD@
  231. EXPAT_LARGE_SIZE = @EXPAT_LARGE_SIZE@
  232. EXPAT_MIN_SIZE = @EXPAT_MIN_SIZE@
  233. EXPAT_NS = @EXPAT_NS@
  234. FGREP = @FGREP@
  235. FILEMAP = @FILEMAP@
  236. GREP = @GREP@
  237. INSTALL = @INSTALL@
  238. INSTALL_DATA = @INSTALL_DATA@
  239. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  240. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  241. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  242. LD = @LD@
  243. LDFLAGS = @LDFLAGS@
  244. LIBAGE = @LIBAGE@
  245. LIBCURRENT = @LIBCURRENT@
  246. LIBDIR_BASENAME = @LIBDIR_BASENAME@
  247. LIBM = @LIBM@
  248. LIBOBJS = @LIBOBJS@
  249. LIBREVISION = @LIBREVISION@
  250. LIBS = @LIBS@
  251. LIBTOOL = @LIBTOOL@
  252. LIPO = @LIPO@
  253. LN_S = @LN_S@
  254. LTLIBOBJS = @LTLIBOBJS@
  255. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  256. MAKEINFO = @MAKEINFO@
  257. MANIFEST_TOOL = @MANIFEST_TOOL@
  258. MKDIR_P = @MKDIR_P@
  259. NM = @NM@
  260. NMEDIT = @NMEDIT@
  261. OBJDUMP = @OBJDUMP@
  262. OBJEXT = @OBJEXT@
  263. OTOOL = @OTOOL@
  264. OTOOL64 = @OTOOL64@
  265. PACKAGE = @PACKAGE@
  266. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  267. PACKAGE_NAME = @PACKAGE_NAME@
  268. PACKAGE_STRING = @PACKAGE_STRING@
  269. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  270. PACKAGE_URL = @PACKAGE_URL@
  271. PACKAGE_VERSION = @PACKAGE_VERSION@
  272. PATH_SEPARATOR = @PATH_SEPARATOR@
  273. RANLIB = @RANLIB@
  274. SED = @SED@
  275. SET_MAKE = @SET_MAKE@
  276. SHELL = @SHELL@
  277. SO_MAJOR = @SO_MAJOR@
  278. SO_MINOR = @SO_MINOR@
  279. SO_PATCH = @SO_PATCH@
  280. STRIP = @STRIP@
  281. VERSION = @VERSION@
  282. abs_builddir = @abs_builddir@
  283. abs_srcdir = @abs_srcdir@
  284. abs_top_builddir = @abs_top_builddir@
  285. abs_top_srcdir = @abs_top_srcdir@
  286. ac_ct_AR = @ac_ct_AR@
  287. ac_ct_CC = @ac_ct_CC@
  288. ac_ct_CXX = @ac_ct_CXX@
  289. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  290. ac_cv_sizeof_void_p = @ac_cv_sizeof_void_p@
  291. am__include = @am__include@
  292. am__leading_dot = @am__leading_dot@
  293. am__quote = @am__quote@
  294. am__tar = @am__tar@
  295. am__untar = @am__untar@
  296. bindir = @bindir@
  297. build = @build@
  298. build_alias = @build_alias@
  299. build_cpu = @build_cpu@
  300. build_os = @build_os@
  301. build_vendor = @build_vendor@
  302. builddir = @builddir@
  303. datadir = @datadir@
  304. datarootdir = @datarootdir@
  305. docdir = @docdir@
  306. dvidir = @dvidir@
  307. exec_prefix = @exec_prefix@
  308. host = @host@
  309. host_alias = @host_alias@
  310. host_cpu = @host_cpu@
  311. host_os = @host_os@
  312. host_vendor = @host_vendor@
  313. htmldir = @htmldir@
  314. includedir = @includedir@
  315. infodir = @infodir@
  316. install_sh = @install_sh@
  317. libdir = @libdir@
  318. libexecdir = @libexecdir@
  319. localedir = @localedir@
  320. localstatedir = @localstatedir@
  321. mandir = @mandir@
  322. mkdir_p = @mkdir_p@
  323. oldincludedir = @oldincludedir@
  324. pdfdir = @pdfdir@
  325. prefix = @prefix@
  326. program_transform_name = @program_transform_name@
  327. psdir = @psdir@
  328. runstatedir = @runstatedir@
  329. sbindir = @sbindir@
  330. sharedstatedir = @sharedstatedir@
  331. srcdir = @srcdir@
  332. sysconfdir = @sysconfdir@
  333. target_alias = @target_alias@
  334. top_build_prefix = @top_build_prefix@
  335. top_builddir = @top_builddir@
  336. top_srcdir = @top_srcdir@
  337. @WITH_DOCBOOK_TRUE@dist_man_MANS = xmlwf.1
  338. EXTRA_DIST = \
  339. ok.min.css \
  340. reference.html \
  341. style.css \
  342. valid-xhtml10.png \
  343. xmlwf.xml
  344. all: all-am
  345. .SUFFIXES:
  346. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  347. @for dep in $?; do \
  348. case '$(am__configure_deps)' in \
  349. *$$dep*) \
  350. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  351. && { if test -f $@; then exit 0; else break; fi; }; \
  352. exit 1;; \
  353. esac; \
  354. done; \
  355. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
  356. $(am__cd) $(top_srcdir) && \
  357. $(AUTOMAKE) --gnu doc/Makefile
  358. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  359. @case '$?' in \
  360. *config.status*) \
  361. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  362. *) \
  363. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  364. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  365. esac;
  366. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  367. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  368. $(top_srcdir)/configure: $(am__configure_deps)
  369. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  370. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  371. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  372. $(am__aclocal_m4_deps):
  373. mostlyclean-libtool:
  374. -rm -f *.lo
  375. clean-libtool:
  376. -rm -rf .libs _libs
  377. install-man1: $(dist_man_MANS)
  378. @$(NORMAL_INSTALL)
  379. @list1=''; \
  380. list2='$(dist_man_MANS)'; \
  381. test -n "$(man1dir)" \
  382. && test -n "`echo $$list1$$list2`" \
  383. || exit 0; \
  384. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  385. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  386. { for i in $$list1; do echo "$$i"; done; \
  387. if test -n "$$list2"; then \
  388. for i in $$list2; do echo "$$i"; done \
  389. | sed -n '/\.1[a-z]*$$/p'; \
  390. fi; \
  391. } | while read p; do \
  392. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  393. echo "$$d$$p"; echo "$$p"; \
  394. done | \
  395. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  396. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  397. sed 'N;N;s,\n, ,g' | { \
  398. list=; while read file base inst; do \
  399. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  400. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  401. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  402. fi; \
  403. done; \
  404. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  405. while read files; do \
  406. test -z "$$files" || { \
  407. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  408. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  409. done; }
  410. uninstall-man1:
  411. @$(NORMAL_UNINSTALL)
  412. @list=''; test -n "$(man1dir)" || exit 0; \
  413. files=`{ for i in $$list; do echo "$$i"; done; \
  414. l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  415. sed -n '/\.1[a-z]*$$/p'; \
  416. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  417. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  418. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  419. tags TAGS:
  420. ctags CTAGS:
  421. cscope cscopelist:
  422. @WITH_DOCBOOK_TRUE@dist-hook:
  423. distdir: $(BUILT_SOURCES)
  424. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  425. distdir-am: $(DISTFILES)
  426. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  427. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  428. list='$(DISTFILES)'; \
  429. dist_files=`for file in $$list; do echo $$file; done | \
  430. sed -e "s|^$$srcdirstrip/||;t" \
  431. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  432. case $$dist_files in \
  433. */*) $(MKDIR_P) `echo "$$dist_files" | \
  434. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  435. sort -u` ;; \
  436. esac; \
  437. for file in $$dist_files; do \
  438. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  439. if test -d $$d/$$file; then \
  440. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  441. if test -d "$(distdir)/$$file"; then \
  442. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  443. fi; \
  444. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  445. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  446. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  447. fi; \
  448. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  449. else \
  450. test -f "$(distdir)/$$file" \
  451. || cp -p $$d/$$file "$(distdir)/$$file" \
  452. || exit 1; \
  453. fi; \
  454. done
  455. $(MAKE) $(AM_MAKEFLAGS) \
  456. top_distdir="$(top_distdir)" distdir="$(distdir)" \
  457. dist-hook
  458. check-am: all-am
  459. check: check-am
  460. all-am: Makefile $(MANS)
  461. installdirs:
  462. for dir in "$(DESTDIR)$(man1dir)"; do \
  463. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  464. done
  465. install: install-am
  466. install-exec: install-exec-am
  467. install-data: install-data-am
  468. uninstall: uninstall-am
  469. install-am: all-am
  470. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  471. installcheck: installcheck-am
  472. install-strip:
  473. if test -z '$(STRIP)'; then \
  474. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  475. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  476. install; \
  477. else \
  478. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  479. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  480. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  481. fi
  482. mostlyclean-generic:
  483. clean-generic:
  484. distclean-generic:
  485. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  486. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  487. maintainer-clean-generic:
  488. @echo "This command is intended for maintainers to use"
  489. @echo "it deletes files that may require special tools to rebuild."
  490. clean: clean-am
  491. clean-am: clean-generic clean-libtool clean-local mostlyclean-am
  492. distclean: distclean-am
  493. -rm -f Makefile
  494. distclean-am: clean-am distclean-generic
  495. dvi: dvi-am
  496. dvi-am:
  497. html: html-am
  498. html-am:
  499. info: info-am
  500. info-am:
  501. install-data-am: install-man
  502. install-dvi: install-dvi-am
  503. install-dvi-am:
  504. install-exec-am:
  505. install-html: install-html-am
  506. install-html-am:
  507. install-info: install-info-am
  508. install-info-am:
  509. install-man: install-man1
  510. install-pdf: install-pdf-am
  511. install-pdf-am:
  512. install-ps: install-ps-am
  513. install-ps-am:
  514. installcheck-am:
  515. maintainer-clean: maintainer-clean-am
  516. -rm -f Makefile
  517. maintainer-clean-am: distclean-am maintainer-clean-generic
  518. mostlyclean: mostlyclean-am
  519. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  520. pdf: pdf-am
  521. pdf-am:
  522. ps: ps-am
  523. ps-am:
  524. uninstall-am: uninstall-man
  525. uninstall-man: uninstall-man1
  526. .MAKE: install-am install-strip
  527. .PHONY: all all-am check check-am clean clean-generic clean-libtool \
  528. clean-local cscopelist-am ctags-am dist-hook distclean \
  529. distclean-generic distclean-libtool distdir dvi dvi-am html \
  530. html-am info info-am install install-am install-data \
  531. install-data-am install-dvi install-dvi-am install-exec \
  532. install-exec-am install-html install-html-am install-info \
  533. install-info-am install-man install-man1 install-pdf \
  534. install-pdf-am install-ps install-ps-am install-strip \
  535. installcheck installcheck-am installdirs maintainer-clean \
  536. maintainer-clean-generic mostlyclean mostlyclean-generic \
  537. mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
  538. uninstall-am uninstall-man uninstall-man1
  539. .PRECIOUS: Makefile
  540. .PHONY: dist-hook # not inside conditional to avoid automake warning
  541. @[email protected]: xmlwf.xml
  542. @WITH_DOCBOOK_TRUE@ -rm -f $@
  543. @WITH_DOCBOOK_TRUE@ $(DOCBOOK_TO_MAN) $<
  544. @WITH_DOCBOOK_TRUE@ test -f $@ || mv XMLWF.1 $@
  545. @WITH_DOCBOOK_FALSE@dist-hook:
  546. @WITH_DOCBOOK_FALSE@ @echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2
  547. @WITH_DOCBOOK_FALSE@ @false
  548. # https://www.gnu.org/software/automake/manual/automake.html#What-Gets-Cleaned
  549. .PHONY: clean-local
  550. clean-local: clean-local-check
  551. .PHONY: clean-local-check
  552. clean-local-check:
  553. $(RM) xmlwf.1
  554. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  555. # Otherwise a system limit (for SysV at least) may be exceeded.
  556. .NOEXPORT: