Makefile.in 19 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-2024 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)/conftools/ax-cxx-compile-stdcxx.m4 \
  131. $(top_srcdir)/conftools/ax-cxx-compile-stdcxx-11.m4 \
  132. $(top_srcdir)/configure.ac
  133. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  134. $(ACLOCAL_M4)
  135. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  136. mkinstalldirs = $(install_sh) -d
  137. CONFIG_HEADER = $(top_builddir)/expat_config.h
  138. CONFIG_CLEAN_FILES =
  139. CONFIG_CLEAN_VPATH_FILES =
  140. AM_V_P = $(am__v_P_@AM_V@)
  141. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  142. am__v_P_0 = false
  143. am__v_P_1 = :
  144. AM_V_GEN = $(am__v_GEN_@AM_V@)
  145. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  146. am__v_GEN_0 = @echo " GEN " $@;
  147. am__v_GEN_1 =
  148. AM_V_at = $(am__v_at_@AM_V@)
  149. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  150. am__v_at_0 = @
  151. am__v_at_1 =
  152. SOURCES =
  153. DIST_SOURCES =
  154. am__can_run_installinfo = \
  155. case $$AM_UPDATE_INFO_DIR in \
  156. n|no|NO) false;; \
  157. *) (install-info --version) >/dev/null 2>&1;; \
  158. esac
  159. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  160. am__vpath_adj = case $$p in \
  161. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  162. *) f=$$p;; \
  163. esac;
  164. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  165. am__install_max = 40
  166. am__nobase_strip_setup = \
  167. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  168. am__nobase_strip = \
  169. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  170. am__nobase_list = $(am__nobase_strip_setup); \
  171. for p in $$list; do echo "$$p $$p"; done | \
  172. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  173. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  174. if (++n[$$2] == $(am__install_max)) \
  175. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  176. END { for (dir in files) print dir, files[dir] }'
  177. am__base_list = \
  178. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  179. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  180. am__uninstall_files_from_dir = { \
  181. test -z "$$files" \
  182. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  183. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  184. $(am__cd) "$$dir" && rm -f $$files; }; \
  185. }
  186. man1dir = $(mandir)/man1
  187. am__installdirs = "$(DESTDIR)$(man1dir)"
  188. NROFF = nroff
  189. MANS = $(dist_man_MANS)
  190. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  191. am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in
  192. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  193. ACLOCAL = @ACLOCAL@
  194. AMTAR = @AMTAR@
  195. AM_CFLAGS = @AM_CFLAGS@
  196. AM_CPPFLAGS = @AM_CPPFLAGS@
  197. AM_CXXFLAGS = @AM_CXXFLAGS@
  198. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  199. AM_LDFLAGS = @AM_LDFLAGS@
  200. AR = @AR@
  201. AS = @AS@
  202. AUTOCONF = @AUTOCONF@
  203. AUTOHEADER = @AUTOHEADER@
  204. AUTOMAKE = @AUTOMAKE@
  205. AWK = @AWK@
  206. CC = @CC@
  207. CCDEPMODE = @CCDEPMODE@
  208. CFLAGS = @CFLAGS@
  209. CMAKE_SHARED_LIBRARY_PREFIX = @CMAKE_SHARED_LIBRARY_PREFIX@
  210. CPPFLAGS = @CPPFLAGS@
  211. CSCOPE = @CSCOPE@
  212. CTAGS = @CTAGS@
  213. CXX = @CXX@
  214. CXXCPP = @CXXCPP@
  215. CXXDEPMODE = @CXXDEPMODE@
  216. CXXFLAGS = @CXXFLAGS@
  217. CYGPATH_W = @CYGPATH_W@
  218. DEFS = @DEFS@
  219. DEPDIR = @DEPDIR@
  220. DLLTOOL = @DLLTOOL@
  221. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  222. DSYMUTIL = @DSYMUTIL@
  223. DUMPBIN = @DUMPBIN@
  224. ECHO_C = @ECHO_C@
  225. ECHO_N = @ECHO_N@
  226. ECHO_T = @ECHO_T@
  227. EGREP = @EGREP@
  228. ETAGS = @ETAGS@
  229. EXEEXT = @EXEEXT@
  230. EXPAT_ATTR_INFO = @EXPAT_ATTR_INFO@
  231. EXPAT_CHAR_TYPE = @EXPAT_CHAR_TYPE@
  232. EXPAT_CONTEXT_BYTES = @EXPAT_CONTEXT_BYTES@
  233. EXPAT_DTD = @EXPAT_DTD@
  234. EXPAT_LARGE_SIZE = @EXPAT_LARGE_SIZE@
  235. EXPAT_MIN_SIZE = @EXPAT_MIN_SIZE@
  236. EXPAT_NS = @EXPAT_NS@
  237. FGREP = @FGREP@
  238. FILECMD = @FILECMD@
  239. FILEMAP = @FILEMAP@
  240. GREP = @GREP@
  241. HAVE_CXX11 = @HAVE_CXX11@
  242. INSTALL = @INSTALL@
  243. INSTALL_DATA = @INSTALL_DATA@
  244. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  245. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  246. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  247. LD = @LD@
  248. LDFLAGS = @LDFLAGS@
  249. LIBAGE = @LIBAGE@
  250. LIBCURRENT = @LIBCURRENT@
  251. LIBDIR_BASENAME = @LIBDIR_BASENAME@
  252. LIBM = @LIBM@
  253. LIBOBJS = @LIBOBJS@
  254. LIBREVISION = @LIBREVISION@
  255. LIBS = @LIBS@
  256. LIBTOOL = @LIBTOOL@
  257. LIPO = @LIPO@
  258. LN_S = @LN_S@
  259. LTLIBOBJS = @LTLIBOBJS@
  260. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  261. MAINT = @MAINT@
  262. MAKEINFO = @MAKEINFO@
  263. MANIFEST_TOOL = @MANIFEST_TOOL@
  264. MKDIR_P = @MKDIR_P@
  265. NM = @NM@
  266. NMEDIT = @NMEDIT@
  267. OBJDUMP = @OBJDUMP@
  268. OBJEXT = @OBJEXT@
  269. OTOOL = @OTOOL@
  270. OTOOL64 = @OTOOL64@
  271. PACKAGE = @PACKAGE@
  272. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  273. PACKAGE_NAME = @PACKAGE_NAME@
  274. PACKAGE_STRING = @PACKAGE_STRING@
  275. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  276. PACKAGE_URL = @PACKAGE_URL@
  277. PACKAGE_VERSION = @PACKAGE_VERSION@
  278. PATH_SEPARATOR = @PATH_SEPARATOR@
  279. RANLIB = @RANLIB@
  280. SED = @SED@
  281. SET_MAKE = @SET_MAKE@
  282. SHELL = @SHELL@
  283. SO_MAJOR = @SO_MAJOR@
  284. SO_MINOR = @SO_MINOR@
  285. SO_PATCH = @SO_PATCH@
  286. STRIP = @STRIP@
  287. VERSION = @VERSION@
  288. abs_builddir = @abs_builddir@
  289. abs_srcdir = @abs_srcdir@
  290. abs_top_builddir = @abs_top_builddir@
  291. abs_top_srcdir = @abs_top_srcdir@
  292. ac_ct_AR = @ac_ct_AR@
  293. ac_ct_CC = @ac_ct_CC@
  294. ac_ct_CXX = @ac_ct_CXX@
  295. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  296. ac_cv_sizeof_void_p = @ac_cv_sizeof_void_p@
  297. am__include = @am__include@
  298. am__leading_dot = @am__leading_dot@
  299. am__quote = @am__quote@
  300. am__tar = @am__tar@
  301. am__untar = @am__untar@
  302. bindir = @bindir@
  303. build = @build@
  304. build_alias = @build_alias@
  305. build_cpu = @build_cpu@
  306. build_os = @build_os@
  307. build_vendor = @build_vendor@
  308. builddir = @builddir@
  309. datadir = @datadir@
  310. datarootdir = @datarootdir@
  311. docdir = @docdir@
  312. dvidir = @dvidir@
  313. exec_prefix = @exec_prefix@
  314. host = @host@
  315. host_alias = @host_alias@
  316. host_cpu = @host_cpu@
  317. host_os = @host_os@
  318. host_vendor = @host_vendor@
  319. htmldir = @htmldir@
  320. includedir = @includedir@
  321. infodir = @infodir@
  322. install_sh = @install_sh@
  323. libdir = @libdir@
  324. libexecdir = @libexecdir@
  325. localedir = @localedir@
  326. localstatedir = @localstatedir@
  327. mandir = @mandir@
  328. mkdir_p = @mkdir_p@
  329. oldincludedir = @oldincludedir@
  330. pdfdir = @pdfdir@
  331. prefix = @prefix@
  332. program_transform_name = @program_transform_name@
  333. psdir = @psdir@
  334. runstatedir = @runstatedir@
  335. sbindir = @sbindir@
  336. sharedstatedir = @sharedstatedir@
  337. srcdir = @srcdir@
  338. sysconfdir = @sysconfdir@
  339. target_alias = @target_alias@
  340. top_build_prefix = @top_build_prefix@
  341. top_builddir = @top_builddir@
  342. top_srcdir = @top_srcdir@
  343. @WITH_MANPAGE_TRUE@dist_man_MANS = xmlwf.1
  344. @WITH_PREBUILT_MANPAGE_FALSE@CLEANFILES = xmlwf.1
  345. EXTRA_DIST = \
  346. ok.min.css \
  347. reference.html \
  348. style.css \
  349. xmlwf.xml
  350. all: all-am
  351. .SUFFIXES:
  352. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  353. @for dep in $?; do \
  354. case '$(am__configure_deps)' in \
  355. *$$dep*) \
  356. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  357. && { if test -f $@; then exit 0; else break; fi; }; \
  358. exit 1;; \
  359. esac; \
  360. done; \
  361. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
  362. $(am__cd) $(top_srcdir) && \
  363. $(AUTOMAKE) --gnu doc/Makefile
  364. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  365. @case '$?' in \
  366. *config.status*) \
  367. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  368. *) \
  369. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  370. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  371. esac;
  372. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  373. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  374. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  375. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  376. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  377. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  378. $(am__aclocal_m4_deps):
  379. mostlyclean-libtool:
  380. -rm -f *.lo
  381. clean-libtool:
  382. -rm -rf .libs _libs
  383. install-man1: $(dist_man_MANS)
  384. @$(NORMAL_INSTALL)
  385. @list1=''; \
  386. list2='$(dist_man_MANS)'; \
  387. test -n "$(man1dir)" \
  388. && test -n "`echo $$list1$$list2`" \
  389. || exit 0; \
  390. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  391. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  392. { for i in $$list1; do echo "$$i"; done; \
  393. if test -n "$$list2"; then \
  394. for i in $$list2; do echo "$$i"; done \
  395. | sed -n '/\.1[a-z]*$$/p'; \
  396. fi; \
  397. } | while read p; do \
  398. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  399. echo "$$d$$p"; echo "$$p"; \
  400. done | \
  401. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  402. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  403. sed 'N;N;s,\n, ,g' | { \
  404. list=; while read file base inst; do \
  405. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  406. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  407. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  408. fi; \
  409. done; \
  410. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  411. while read files; do \
  412. test -z "$$files" || { \
  413. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  414. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  415. done; }
  416. uninstall-man1:
  417. @$(NORMAL_UNINSTALL)
  418. @list=''; test -n "$(man1dir)" || exit 0; \
  419. files=`{ for i in $$list; do echo "$$i"; done; \
  420. l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  421. sed -n '/\.1[a-z]*$$/p'; \
  422. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  423. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  424. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  425. tags TAGS:
  426. ctags CTAGS:
  427. cscope cscopelist:
  428. @WITH_DISTRIBUTABLE_MANPAGE_TRUE@dist-hook:
  429. distdir: $(BUILT_SOURCES)
  430. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  431. distdir-am: $(DISTFILES)
  432. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  433. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  434. list='$(DISTFILES)'; \
  435. dist_files=`for file in $$list; do echo $$file; done | \
  436. sed -e "s|^$$srcdirstrip/||;t" \
  437. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  438. case $$dist_files in \
  439. */*) $(MKDIR_P) `echo "$$dist_files" | \
  440. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  441. sort -u` ;; \
  442. esac; \
  443. for file in $$dist_files; do \
  444. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  445. if test -d $$d/$$file; then \
  446. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  447. if test -d "$(distdir)/$$file"; then \
  448. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  449. fi; \
  450. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  451. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  452. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  453. fi; \
  454. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  455. else \
  456. test -f "$(distdir)/$$file" \
  457. || cp -p $$d/$$file "$(distdir)/$$file" \
  458. || exit 1; \
  459. fi; \
  460. done
  461. $(MAKE) $(AM_MAKEFLAGS) \
  462. top_distdir="$(top_distdir)" distdir="$(distdir)" \
  463. dist-hook
  464. check-am: all-am
  465. check: check-am
  466. all-am: Makefile $(MANS)
  467. installdirs:
  468. for dir in "$(DESTDIR)$(man1dir)"; do \
  469. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  470. done
  471. install: install-am
  472. install-exec: install-exec-am
  473. install-data: install-data-am
  474. uninstall: uninstall-am
  475. install-am: all-am
  476. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  477. installcheck: installcheck-am
  478. install-strip:
  479. if test -z '$(STRIP)'; then \
  480. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  481. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  482. install; \
  483. else \
  484. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  485. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  486. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  487. fi
  488. mostlyclean-generic:
  489. clean-generic:
  490. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  491. distclean-generic:
  492. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  493. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  494. maintainer-clean-generic:
  495. @echo "This command is intended for maintainers to use"
  496. @echo "it deletes files that may require special tools to rebuild."
  497. clean: clean-am
  498. clean-am: clean-generic clean-libtool mostlyclean-am
  499. distclean: distclean-am
  500. -rm -f Makefile
  501. distclean-am: clean-am distclean-generic
  502. dvi: dvi-am
  503. dvi-am:
  504. html: html-am
  505. html-am:
  506. info: info-am
  507. info-am:
  508. install-data-am: install-man
  509. install-dvi: install-dvi-am
  510. install-dvi-am:
  511. install-exec-am:
  512. install-html: install-html-am
  513. install-html-am:
  514. install-info: install-info-am
  515. install-info-am:
  516. install-man: install-man1
  517. install-pdf: install-pdf-am
  518. install-pdf-am:
  519. install-ps: install-ps-am
  520. install-ps-am:
  521. installcheck-am:
  522. maintainer-clean: maintainer-clean-am
  523. -rm -f Makefile
  524. maintainer-clean-am: distclean-am maintainer-clean-generic
  525. mostlyclean: mostlyclean-am
  526. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  527. pdf: pdf-am
  528. pdf-am:
  529. ps: ps-am
  530. ps-am:
  531. uninstall-am: uninstall-man
  532. uninstall-man: uninstall-man1
  533. .MAKE: install-am install-strip
  534. .PHONY: all all-am check check-am clean clean-generic clean-libtool \
  535. cscopelist-am ctags-am dist-hook distclean distclean-generic \
  536. distclean-libtool distdir dvi dvi-am html html-am info info-am \
  537. install install-am install-data install-data-am install-dvi \
  538. install-dvi-am install-exec install-exec-am install-html \
  539. install-html-am install-info install-info-am install-man \
  540. install-man1 install-pdf install-pdf-am install-ps \
  541. install-ps-am install-strip installcheck installcheck-am \
  542. installdirs maintainer-clean maintainer-clean-generic \
  543. mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
  544. ps ps-am tags-am uninstall uninstall-am uninstall-man \
  545. uninstall-man1
  546. .PRECIOUS: Makefile
  547. .PHONY: dist-hook # not inside conditional to avoid automake warning
  548. @[email protected]: xmlwf.xml
  549. @WITH_MANPAGE_TRUE@ -rm -f $@
  550. @WITH_MANPAGE_TRUE@ test "x$(DOCBOOK_TO_MAN)" != x && $(DOCBOOK_TO_MAN) $<
  551. @WITH_MANPAGE_TRUE@ test -f $@ || mv XMLWF.1 $@
  552. @WITH_DISTRIBUTABLE_MANPAGE_FALSE@dist-hook:
  553. @WITH_DISTRIBUTABLE_MANPAGE_FALSE@ @echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2
  554. @WITH_DISTRIBUTABLE_MANPAGE_FALSE@ @false
  555. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  556. # Otherwise a system limit (for SysV at least) may be exceeded.
  557. .NOEXPORT: