Makefile.in 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. # Makefile.in generated by automake 1.16.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2018 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 Expat development team
  21. # Licensed under the MIT license:
  22. #
  23. # Permission is hereby granted, free of charge, to any person obtaining
  24. # a copy of this software and associated documentation files (the
  25. # "Software"), to deal in the Software without restriction, including
  26. # without limitation the rights to use, copy, modify, merge, publish,
  27. # distribute, sublicense, and/or sell copies of the Software, and to permit
  28. # persons to whom the Software is furnished to do so, subject to the
  29. # following conditions:
  30. #
  31. # The above copyright notice and this permission notice shall be included
  32. # in all copies or substantial portions of the Software.
  33. #
  34. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  35. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  36. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  37. # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  38. # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  39. # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  40. # USE OR OTHER DEALINGS IN THE SOFTWARE.
  41. VPATH = @srcdir@
  42. am__is_gnu_make = { \
  43. if test -z '$(MAKELEVEL)'; then \
  44. false; \
  45. elif test -n '$(MAKE_HOST)'; then \
  46. true; \
  47. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  48. true; \
  49. else \
  50. false; \
  51. fi; \
  52. }
  53. am__make_running_with_option = \
  54. case $${target_option-} in \
  55. ?) ;; \
  56. *) echo "am__make_running_with_option: internal error: invalid" \
  57. "target option '$${target_option-}' specified" >&2; \
  58. exit 1;; \
  59. esac; \
  60. has_opt=no; \
  61. sane_makeflags=$$MAKEFLAGS; \
  62. if $(am__is_gnu_make); then \
  63. sane_makeflags=$$MFLAGS; \
  64. else \
  65. case $$MAKEFLAGS in \
  66. *\\[\ \ ]*) \
  67. bs=\\; \
  68. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  69. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  70. esac; \
  71. fi; \
  72. skip_next=no; \
  73. strip_trailopt () \
  74. { \
  75. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  76. }; \
  77. for flg in $$sane_makeflags; do \
  78. test $$skip_next = yes && { skip_next=no; continue; }; \
  79. case $$flg in \
  80. *=*|--*) continue;; \
  81. -*I) strip_trailopt 'I'; skip_next=yes;; \
  82. -*I?*) strip_trailopt 'I';; \
  83. -*O) strip_trailopt 'O'; skip_next=yes;; \
  84. -*O?*) strip_trailopt 'O';; \
  85. -*l) strip_trailopt 'l'; skip_next=yes;; \
  86. -*l?*) strip_trailopt 'l';; \
  87. -[dEDm]) skip_next=yes;; \
  88. -[JT]) skip_next=yes;; \
  89. esac; \
  90. case $$flg in \
  91. *$$target_option*) has_opt=yes; break;; \
  92. esac; \
  93. done; \
  94. test $$has_opt = yes
  95. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  96. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  97. pkgdatadir = $(datadir)/@PACKAGE@
  98. pkgincludedir = $(includedir)/@PACKAGE@
  99. pkglibdir = $(libdir)/@PACKAGE@
  100. pkglibexecdir = $(libexecdir)/@PACKAGE@
  101. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  102. install_sh_DATA = $(install_sh) -c -m 644
  103. install_sh_PROGRAM = $(install_sh) -c
  104. install_sh_SCRIPT = $(install_sh) -c
  105. INSTALL_HEADER = $(INSTALL_DATA)
  106. transform = $(program_transform_name)
  107. NORMAL_INSTALL = :
  108. PRE_INSTALL = :
  109. POST_INSTALL = :
  110. NORMAL_UNINSTALL = :
  111. PRE_UNINSTALL = :
  112. POST_UNINSTALL = :
  113. build_triplet = @build@
  114. host_triplet = @host@
  115. @WITH_EXAMPLES_TRUE@am__append_1 = examples
  116. @WITH_TESTS_TRUE@am__append_2 = tests
  117. @WITH_XMLWF_TRUE@am__append_3 = xmlwf doc
  118. subdir = .
  119. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  120. am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
  121. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  122. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  123. $(top_srcdir)/acinclude.m4 \
  124. $(top_srcdir)/conftools/ax-require-defined.m4 \
  125. $(top_srcdir)/conftools/ax-check-compile-flag.m4 \
  126. $(top_srcdir)/conftools/ax-check-link-flag.m4 \
  127. $(top_srcdir)/conftools/ax-append-flag.m4 \
  128. $(top_srcdir)/conftools/ax-append-compile-flags.m4 \
  129. $(top_srcdir)/conftools/ax-append-link-flags.m4 \
  130. $(top_srcdir)/conftools/expatcfg-compiler-supports-visibility.m4 \
  131. $(top_srcdir)/configure.ac
  132. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  133. $(ACLOCAL_M4)
  134. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  135. $(am__configure_deps) $(am__DIST_COMMON)
  136. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  137. configure.lineno config.status.lineno
  138. mkinstalldirs = $(install_sh) -d
  139. CONFIG_HEADER = expat_config.h
  140. CONFIG_CLEAN_FILES = expat.pc run.sh
  141. CONFIG_CLEAN_VPATH_FILES =
  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. SOURCES =
  155. DIST_SOURCES =
  156. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  157. ctags-recursive dvi-recursive html-recursive info-recursive \
  158. install-data-recursive install-dvi-recursive \
  159. install-exec-recursive install-html-recursive \
  160. install-info-recursive install-pdf-recursive \
  161. install-ps-recursive install-recursive installcheck-recursive \
  162. installdirs-recursive pdf-recursive ps-recursive \
  163. tags-recursive uninstall-recursive
  164. am__can_run_installinfo = \
  165. case $$AM_UPDATE_INFO_DIR in \
  166. n|no|NO) false;; \
  167. *) (install-info --version) >/dev/null 2>&1;; \
  168. esac
  169. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  170. am__vpath_adj = case $$p in \
  171. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  172. *) f=$$p;; \
  173. esac;
  174. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  175. am__install_max = 40
  176. am__nobase_strip_setup = \
  177. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  178. am__nobase_strip = \
  179. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  180. am__nobase_list = $(am__nobase_strip_setup); \
  181. for p in $$list; do echo "$$p $$p"; done | \
  182. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  183. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  184. if (++n[$$2] == $(am__install_max)) \
  185. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  186. END { for (dir in files) print dir, files[dir] }'
  187. am__base_list = \
  188. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  189. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  190. am__uninstall_files_from_dir = { \
  191. test -z "$$files" \
  192. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  193. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  194. $(am__cd) "$$dir" && rm -f $$files; }; \
  195. }
  196. am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
  197. DATA = $(pkgconfig_DATA)
  198. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  199. distclean-recursive maintainer-clean-recursive
  200. am__recursive_targets = \
  201. $(RECURSIVE_TARGETS) \
  202. $(RECURSIVE_CLEAN_TARGETS) \
  203. $(am__extra_recursive_targets)
  204. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  205. cscope distdir distdir-am dist dist-all distcheck
  206. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  207. $(LISP)expat_config.h.in
  208. # Read a list of newline-separated strings from the standard input,
  209. # and print each of them once, without duplicates. Input order is
  210. # *not* preserved.
  211. am__uniquify_input = $(AWK) '\
  212. BEGIN { nonempty = 0; } \
  213. { items[$$0] = 1; nonempty = 1; } \
  214. END { if (nonempty) { for (i in items) print i; }; } \
  215. '
  216. # Make sure the list of sources is unique. This is necessary because,
  217. # e.g., the same source file might be shared among _SOURCES variables
  218. # for different programs/libraries.
  219. am__define_uniq_tagged_files = \
  220. list='$(am__tagged_files)'; \
  221. unique=`for i in $$list; do \
  222. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  223. done | $(am__uniquify_input)`
  224. ETAGS = etags
  225. CTAGS = ctags
  226. CSCOPE = cscope
  227. DIST_SUBDIRS = lib examples tests xmlwf doc
  228. am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/expat.pc.in \
  229. $(srcdir)/expat_config.h.in $(srcdir)/run.sh.in \
  230. $(top_srcdir)/conftools/ar-lib $(top_srcdir)/conftools/compile \
  231. $(top_srcdir)/conftools/config.guess \
  232. $(top_srcdir)/conftools/config.sub \
  233. $(top_srcdir)/conftools/install-sh \
  234. $(top_srcdir)/conftools/ltmain.sh \
  235. $(top_srcdir)/conftools/missing AUTHORS COPYING \
  236. conftools/ar-lib conftools/compile conftools/config.guess \
  237. conftools/config.sub conftools/depcomp conftools/install-sh \
  238. conftools/ltmain.sh conftools/missing
  239. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  240. distdir = $(PACKAGE)-$(VERSION)
  241. top_distdir = $(distdir)
  242. am__remove_distdir = \
  243. if test -d "$(distdir)"; then \
  244. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  245. && rm -rf "$(distdir)" \
  246. || { sleep 5 && rm -rf "$(distdir)"; }; \
  247. else :; fi
  248. am__post_remove_distdir = $(am__remove_distdir)
  249. am__relativize = \
  250. dir0=`pwd`; \
  251. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  252. sed_rest='s,^[^/]*/*,,'; \
  253. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  254. sed_butlast='s,/*[^/]*$$,,'; \
  255. while test -n "$$dir1"; do \
  256. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  257. if test "$$first" != "."; then \
  258. if test "$$first" = ".."; then \
  259. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  260. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  261. else \
  262. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  263. if test "$$first2" = "$$first"; then \
  264. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  265. else \
  266. dir2="../$$dir2"; \
  267. fi; \
  268. dir0="$$dir0"/"$$first"; \
  269. fi; \
  270. fi; \
  271. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  272. done; \
  273. reldir="$$dir2"
  274. DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).tar.lz \
  275. $(distdir).tar.xz
  276. GZIP_ENV = --best
  277. DIST_TARGETS = dist-lzip dist-xz dist-bzip2 dist-gzip
  278. distuninstallcheck_listfiles = find . -type f -print
  279. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  280. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  281. distcleancheck_listfiles = find . -type f -print
  282. ACLOCAL = @ACLOCAL@
  283. AMTAR = @AMTAR@
  284. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  285. AR = @AR@
  286. AS = @AS@
  287. AUTOCONF = @AUTOCONF@
  288. AUTOHEADER = @AUTOHEADER@
  289. AUTOMAKE = @AUTOMAKE@
  290. AWK = @AWK@
  291. CC = @CC@
  292. CCDEPMODE = @CCDEPMODE@
  293. CFLAGS = @CFLAGS@
  294. CPP = @CPP@
  295. CPPFLAGS = @CPPFLAGS@
  296. CXX = @CXX@
  297. CXXCPP = @CXXCPP@
  298. CXXDEPMODE = @CXXDEPMODE@
  299. CXXFLAGS = @CXXFLAGS@
  300. CYGPATH_W = @CYGPATH_W@
  301. DEFS = @DEFS@
  302. DEPDIR = @DEPDIR@
  303. DLLTOOL = @DLLTOOL@
  304. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  305. DSYMUTIL = @DSYMUTIL@
  306. DUMPBIN = @DUMPBIN@
  307. ECHO_C = @ECHO_C@
  308. ECHO_N = @ECHO_N@
  309. ECHO_T = @ECHO_T@
  310. EGREP = @EGREP@
  311. EXEEXT = @EXEEXT@
  312. FGREP = @FGREP@
  313. FILEMAP = @FILEMAP@
  314. GREP = @GREP@
  315. INSTALL = @INSTALL@
  316. INSTALL_DATA = @INSTALL_DATA@
  317. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  318. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  319. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  320. LD = @LD@
  321. LDFLAGS = @LDFLAGS@
  322. LIBAGE = @LIBAGE@
  323. LIBCURRENT = @LIBCURRENT@
  324. LIBOBJS = @LIBOBJS@
  325. LIBREVISION = @LIBREVISION@
  326. LIBS = @LIBS@
  327. LIBTOOL = @LIBTOOL@
  328. LIPO = @LIPO@
  329. LN_S = @LN_S@
  330. LTLIBOBJS = @LTLIBOBJS@
  331. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  332. MAKEINFO = @MAKEINFO@
  333. MANIFEST_TOOL = @MANIFEST_TOOL@
  334. MKDIR_P = @MKDIR_P@
  335. NM = @NM@
  336. NMEDIT = @NMEDIT@
  337. OBJDUMP = @OBJDUMP@
  338. OBJEXT = @OBJEXT@
  339. OTOOL = @OTOOL@
  340. OTOOL64 = @OTOOL64@
  341. PACKAGE = @PACKAGE@
  342. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  343. PACKAGE_NAME = @PACKAGE_NAME@
  344. PACKAGE_STRING = @PACKAGE_STRING@
  345. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  346. PACKAGE_URL = @PACKAGE_URL@
  347. PACKAGE_VERSION = @PACKAGE_VERSION@
  348. PATH_SEPARATOR = @PATH_SEPARATOR@
  349. RANLIB = @RANLIB@
  350. SED = @SED@
  351. SET_MAKE = @SET_MAKE@
  352. SHELL = @SHELL@
  353. STRIP = @STRIP@
  354. VERSION = @VERSION@
  355. abs_builddir = @abs_builddir@
  356. abs_srcdir = @abs_srcdir@
  357. abs_top_builddir = @abs_top_builddir@
  358. abs_top_srcdir = @abs_top_srcdir@
  359. ac_ct_AR = @ac_ct_AR@
  360. ac_ct_CC = @ac_ct_CC@
  361. ac_ct_CXX = @ac_ct_CXX@
  362. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  363. am__include = @am__include@
  364. am__leading_dot = @am__leading_dot@
  365. am__quote = @am__quote@
  366. am__tar = @am__tar@
  367. am__untar = @am__untar@
  368. bindir = @bindir@
  369. build = @build@
  370. build_alias = @build_alias@
  371. build_cpu = @build_cpu@
  372. build_os = @build_os@
  373. build_vendor = @build_vendor@
  374. builddir = @builddir@
  375. datadir = @datadir@
  376. datarootdir = @datarootdir@
  377. docdir = @docdir@
  378. dvidir = @dvidir@
  379. exec_prefix = @exec_prefix@
  380. host = @host@
  381. host_alias = @host_alias@
  382. host_cpu = @host_cpu@
  383. host_os = @host_os@
  384. host_vendor = @host_vendor@
  385. htmldir = @htmldir@
  386. includedir = @includedir@
  387. infodir = @infodir@
  388. install_sh = @install_sh@
  389. libdir = @libdir@
  390. libexecdir = @libexecdir@
  391. localedir = @localedir@
  392. localstatedir = @localstatedir@
  393. mandir = @mandir@
  394. mkdir_p = @mkdir_p@
  395. oldincludedir = @oldincludedir@
  396. pdfdir = @pdfdir@
  397. prefix = @prefix@
  398. program_transform_name = @program_transform_name@
  399. psdir = @psdir@
  400. sbindir = @sbindir@
  401. sharedstatedir = @sharedstatedir@
  402. srcdir = @srcdir@
  403. sysconfdir = @sysconfdir@
  404. target_alias = @target_alias@
  405. top_build_prefix = @top_build_prefix@
  406. top_builddir = @top_builddir@
  407. top_srcdir = @top_srcdir@
  408. AUTOMAKE_OPTIONS = \
  409. dist-bzip2 \
  410. dist-lzip \
  411. dist-xz \
  412. foreign \
  413. subdir-objects
  414. ACLOCAL_AMFLAGS = -I m4
  415. LIBTOOLFLAGS = --verbose
  416. SUBDIRS = lib $(am__append_1) $(am__append_2) $(am__append_3)
  417. pkgconfig_DATA = expat.pc
  418. pkgconfigdir = $(libdir)/pkgconfig
  419. _EXTRA_DIST_CMAKE = \
  420. cmake/expat-config.cmake.in \
  421. cmake/mingw-toolchain.cmake \
  422. \
  423. CMakeLists.txt \
  424. CMake.README \
  425. ConfigureChecks.cmake \
  426. expat_config.h.cmake
  427. _EXTRA_DIST_WINDOWS = \
  428. win32/build_expat_iss.bat \
  429. win32/expat.iss \
  430. win32/MANIFEST.txt \
  431. win32/README.txt
  432. EXTRA_DIST = \
  433. $(_EXTRA_DIST_CMAKE) \
  434. $(_EXTRA_DIST_WINDOWS) \
  435. \
  436. conftools/expat.m4 \
  437. conftools/get-version.sh \
  438. conftools/PrintPath \
  439. \
  440. xmlwf/xmlwf_helpgen.py \
  441. xmlwf/xmlwf_helpgen.sh \
  442. \
  443. Changes \
  444. README.md \
  445. \
  446. fix-xmltest-log.sh \
  447. test-driver-wrapper.sh
  448. all: expat_config.h
  449. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  450. .SUFFIXES:
  451. am--refresh: Makefile
  452. @:
  453. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  454. @for dep in $?; do \
  455. case '$(am__configure_deps)' in \
  456. *$$dep*) \
  457. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  458. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  459. && exit 0; \
  460. exit 1;; \
  461. esac; \
  462. done; \
  463. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  464. $(am__cd) $(top_srcdir) && \
  465. $(AUTOMAKE) --foreign Makefile
  466. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  467. @case '$?' in \
  468. *config.status*) \
  469. echo ' $(SHELL) ./config.status'; \
  470. $(SHELL) ./config.status;; \
  471. *) \
  472. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
  473. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
  474. esac;
  475. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  476. $(SHELL) ./config.status --recheck
  477. $(top_srcdir)/configure: $(am__configure_deps)
  478. $(am__cd) $(srcdir) && $(AUTOCONF)
  479. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  480. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  481. $(am__aclocal_m4_deps):
  482. expat_config.h: stamp-h1
  483. @test -f $@ || rm -f stamp-h1
  484. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  485. stamp-h1: $(srcdir)/expat_config.h.in $(top_builddir)/config.status
  486. @rm -f stamp-h1
  487. cd $(top_builddir) && $(SHELL) ./config.status expat_config.h
  488. $(srcdir)/expat_config.h.in: $(am__configure_deps)
  489. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  490. rm -f stamp-h1
  491. touch $@
  492. distclean-hdr:
  493. -rm -f expat_config.h stamp-h1
  494. expat.pc: $(top_builddir)/config.status $(srcdir)/expat.pc.in
  495. cd $(top_builddir) && $(SHELL) ./config.status $@
  496. run.sh: $(top_builddir)/config.status $(srcdir)/run.sh.in
  497. cd $(top_builddir) && $(SHELL) ./config.status $@
  498. mostlyclean-libtool:
  499. -rm -f *.lo
  500. clean-libtool:
  501. -rm -rf .libs _libs
  502. distclean-libtool:
  503. -rm -f libtool config.lt
  504. install-pkgconfigDATA: $(pkgconfig_DATA)
  505. @$(NORMAL_INSTALL)
  506. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  507. if test -n "$$list"; then \
  508. echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
  509. $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
  510. fi; \
  511. for p in $$list; do \
  512. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  513. echo "$$d$$p"; \
  514. done | $(am__base_list) | \
  515. while read files; do \
  516. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
  517. $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
  518. done
  519. uninstall-pkgconfigDATA:
  520. @$(NORMAL_UNINSTALL)
  521. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  522. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  523. dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
  524. # This directory's subdirectories are mostly independent; you can cd
  525. # into them and run 'make' without going through this Makefile.
  526. # To change the values of 'make' variables: instead of editing Makefiles,
  527. # (1) if the variable is set in 'config.status', edit 'config.status'
  528. # (which will cause the Makefiles to be regenerated when you run 'make');
  529. # (2) otherwise, pass the desired values on the 'make' command line.
  530. $(am__recursive_targets):
  531. @fail=; \
  532. if $(am__make_keepgoing); then \
  533. failcom='fail=yes'; \
  534. else \
  535. failcom='exit 1'; \
  536. fi; \
  537. dot_seen=no; \
  538. target=`echo $@ | sed s/-recursive//`; \
  539. case "$@" in \
  540. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  541. *) list='$(SUBDIRS)' ;; \
  542. esac; \
  543. for subdir in $$list; do \
  544. echo "Making $$target in $$subdir"; \
  545. if test "$$subdir" = "."; then \
  546. dot_seen=yes; \
  547. local_target="$$target-am"; \
  548. else \
  549. local_target="$$target"; \
  550. fi; \
  551. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  552. || eval $$failcom; \
  553. done; \
  554. if test "$$dot_seen" = "no"; then \
  555. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  556. fi; test -z "$$fail"
  557. ID: $(am__tagged_files)
  558. $(am__define_uniq_tagged_files); mkid -fID $$unique
  559. tags: tags-recursive
  560. TAGS: tags
  561. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  562. set x; \
  563. here=`pwd`; \
  564. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  565. include_option=--etags-include; \
  566. empty_fix=.; \
  567. else \
  568. include_option=--include; \
  569. empty_fix=; \
  570. fi; \
  571. list='$(SUBDIRS)'; for subdir in $$list; do \
  572. if test "$$subdir" = .; then :; else \
  573. test ! -f $$subdir/TAGS || \
  574. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  575. fi; \
  576. done; \
  577. $(am__define_uniq_tagged_files); \
  578. shift; \
  579. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  580. test -n "$$unique" || unique=$$empty_fix; \
  581. if test $$# -gt 0; then \
  582. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  583. "$$@" $$unique; \
  584. else \
  585. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  586. $$unique; \
  587. fi; \
  588. fi
  589. ctags: ctags-recursive
  590. CTAGS: ctags
  591. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  592. $(am__define_uniq_tagged_files); \
  593. test -z "$(CTAGS_ARGS)$$unique" \
  594. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  595. $$unique
  596. GTAGS:
  597. here=`$(am__cd) $(top_builddir) && pwd` \
  598. && $(am__cd) $(top_srcdir) \
  599. && gtags -i $(GTAGS_ARGS) "$$here"
  600. cscope: cscope.files
  601. test ! -s cscope.files \
  602. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  603. clean-cscope:
  604. -rm -f cscope.files
  605. cscope.files: clean-cscope cscopelist
  606. cscopelist: cscopelist-recursive
  607. cscopelist-am: $(am__tagged_files)
  608. list='$(am__tagged_files)'; \
  609. case "$(srcdir)" in \
  610. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  611. *) sdir=$(subdir)/$(srcdir) ;; \
  612. esac; \
  613. for i in $$list; do \
  614. if test -f "$$i"; then \
  615. echo "$(subdir)/$$i"; \
  616. else \
  617. echo "$$sdir/$$i"; \
  618. fi; \
  619. done >> $(top_builddir)/cscope.files
  620. distclean-tags:
  621. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  622. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  623. distdir: $(BUILT_SOURCES)
  624. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  625. distdir-am: $(DISTFILES)
  626. $(am__remove_distdir)
  627. test -d "$(distdir)" || mkdir "$(distdir)"
  628. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  629. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  630. list='$(DISTFILES)'; \
  631. dist_files=`for file in $$list; do echo $$file; done | \
  632. sed -e "s|^$$srcdirstrip/||;t" \
  633. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  634. case $$dist_files in \
  635. */*) $(MKDIR_P) `echo "$$dist_files" | \
  636. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  637. sort -u` ;; \
  638. esac; \
  639. for file in $$dist_files; do \
  640. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  641. if test -d $$d/$$file; then \
  642. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  643. if test -d "$(distdir)/$$file"; then \
  644. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  645. fi; \
  646. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  647. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  648. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  649. fi; \
  650. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  651. else \
  652. test -f "$(distdir)/$$file" \
  653. || cp -p $$d/$$file "$(distdir)/$$file" \
  654. || exit 1; \
  655. fi; \
  656. done
  657. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  658. if test "$$subdir" = .; then :; else \
  659. $(am__make_dryrun) \
  660. || test -d "$(distdir)/$$subdir" \
  661. || $(MKDIR_P) "$(distdir)/$$subdir" \
  662. || exit 1; \
  663. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  664. $(am__relativize); \
  665. new_distdir=$$reldir; \
  666. dir1=$$subdir; dir2="$(top_distdir)"; \
  667. $(am__relativize); \
  668. new_top_distdir=$$reldir; \
  669. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  670. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  671. ($(am__cd) $$subdir && \
  672. $(MAKE) $(AM_MAKEFLAGS) \
  673. top_distdir="$$new_top_distdir" \
  674. distdir="$$new_distdir" \
  675. am__remove_distdir=: \
  676. am__skip_length_check=: \
  677. am__skip_mode_fix=: \
  678. distdir) \
  679. || exit 1; \
  680. fi; \
  681. done
  682. -test -n "$(am__skip_mode_fix)" \
  683. || find "$(distdir)" -type d ! -perm -755 \
  684. -exec chmod u+rwx,go+rx {} \; -o \
  685. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  686. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  687. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  688. || chmod -R a+r "$(distdir)"
  689. dist-gzip: distdir
  690. tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
  691. $(am__post_remove_distdir)
  692. dist-bzip2: distdir
  693. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  694. $(am__post_remove_distdir)
  695. dist-lzip: distdir
  696. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  697. $(am__post_remove_distdir)
  698. dist-xz: distdir
  699. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  700. $(am__post_remove_distdir)
  701. dist-tarZ: distdir
  702. @echo WARNING: "Support for distribution archives compressed with" \
  703. "legacy program 'compress' is deprecated." >&2
  704. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  705. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  706. $(am__post_remove_distdir)
  707. dist-shar: distdir
  708. @echo WARNING: "Support for shar distribution archives is" \
  709. "deprecated." >&2
  710. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  711. shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
  712. $(am__post_remove_distdir)
  713. dist-zip: distdir
  714. -rm -f $(distdir).zip
  715. zip -rq $(distdir).zip $(distdir)
  716. $(am__post_remove_distdir)
  717. dist dist-all:
  718. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  719. $(am__post_remove_distdir)
  720. # This target untars the dist file and tries a VPATH configuration. Then
  721. # it guarantees that the distribution is self-contained by making another
  722. # tarfile.
  723. distcheck: dist
  724. case '$(DIST_ARCHIVES)' in \
  725. *.tar.gz*) \
  726. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
  727. *.tar.bz2*) \
  728. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  729. *.tar.lz*) \
  730. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  731. *.tar.xz*) \
  732. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  733. *.tar.Z*) \
  734. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  735. *.shar.gz*) \
  736. eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
  737. *.zip*) \
  738. unzip $(distdir).zip ;;\
  739. esac
  740. chmod -R a-w $(distdir)
  741. chmod u+w $(distdir)
  742. mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
  743. chmod a-w $(distdir)
  744. test -d $(distdir)/_build || exit 0; \
  745. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  746. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  747. && am__cwd=`pwd` \
  748. && $(am__cd) $(distdir)/_build/sub \
  749. && ../../configure \
  750. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  751. $(DISTCHECK_CONFIGURE_FLAGS) \
  752. --srcdir=../.. --prefix="$$dc_install_base" \
  753. && $(MAKE) $(AM_MAKEFLAGS) \
  754. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  755. && $(MAKE) $(AM_MAKEFLAGS) check \
  756. && $(MAKE) $(AM_MAKEFLAGS) install \
  757. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  758. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  759. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  760. distuninstallcheck \
  761. && chmod -R a-w "$$dc_install_base" \
  762. && ({ \
  763. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  764. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  765. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  766. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  767. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  768. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  769. && rm -rf "$$dc_destdir" \
  770. && $(MAKE) $(AM_MAKEFLAGS) dist \
  771. && rm -rf $(DIST_ARCHIVES) \
  772. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  773. && cd "$$am__cwd" \
  774. || exit 1
  775. $(am__post_remove_distdir)
  776. @(echo "$(distdir) archives ready for distribution: "; \
  777. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  778. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  779. distuninstallcheck:
  780. @test -n '$(distuninstallcheck_dir)' || { \
  781. echo 'ERROR: trying to run $@ with an empty' \
  782. '$$(distuninstallcheck_dir)' >&2; \
  783. exit 1; \
  784. }; \
  785. $(am__cd) '$(distuninstallcheck_dir)' || { \
  786. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  787. exit 1; \
  788. }; \
  789. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  790. || { echo "ERROR: files left after uninstall:" ; \
  791. if test -n "$(DESTDIR)"; then \
  792. echo " (check DESTDIR support)"; \
  793. fi ; \
  794. $(distuninstallcheck_listfiles) ; \
  795. exit 1; } >&2
  796. distcleancheck: distclean
  797. @if test '$(srcdir)' = . ; then \
  798. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  799. exit 1 ; \
  800. fi
  801. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  802. || { echo "ERROR: files left in build directory after distclean:" ; \
  803. $(distcleancheck_listfiles) ; \
  804. exit 1; } >&2
  805. check-am: all-am
  806. check: check-recursive
  807. all-am: Makefile $(DATA) expat_config.h
  808. installdirs: installdirs-recursive
  809. installdirs-am:
  810. for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
  811. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  812. done
  813. install: install-recursive
  814. install-exec: install-exec-recursive
  815. install-data: install-data-recursive
  816. uninstall: uninstall-recursive
  817. install-am: all-am
  818. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  819. installcheck: installcheck-recursive
  820. install-strip:
  821. if test -z '$(STRIP)'; then \
  822. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  823. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  824. install; \
  825. else \
  826. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  827. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  828. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  829. fi
  830. mostlyclean-generic:
  831. clean-generic:
  832. distclean-generic:
  833. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  834. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  835. maintainer-clean-generic:
  836. @echo "This command is intended for maintainers to use"
  837. @echo "it deletes files that may require special tools to rebuild."
  838. clean: clean-recursive
  839. clean-am: clean-generic clean-libtool mostlyclean-am
  840. distclean: distclean-recursive
  841. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  842. -rm -f Makefile
  843. distclean-am: clean-am distclean-generic distclean-hdr \
  844. distclean-libtool distclean-tags
  845. dvi: dvi-recursive
  846. dvi-am:
  847. html: html-recursive
  848. html-am:
  849. info: info-recursive
  850. info-am:
  851. install-data-am: install-pkgconfigDATA
  852. install-dvi: install-dvi-recursive
  853. install-dvi-am:
  854. install-exec-am:
  855. install-html: install-html-recursive
  856. install-html-am:
  857. install-info: install-info-recursive
  858. install-info-am:
  859. install-man:
  860. install-pdf: install-pdf-recursive
  861. install-pdf-am:
  862. install-ps: install-ps-recursive
  863. install-ps-am:
  864. installcheck-am:
  865. maintainer-clean: maintainer-clean-recursive
  866. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  867. -rm -rf $(top_srcdir)/autom4te.cache
  868. -rm -f Makefile
  869. maintainer-clean-am: distclean-am maintainer-clean-generic
  870. mostlyclean: mostlyclean-recursive
  871. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  872. pdf: pdf-recursive
  873. pdf-am:
  874. ps: ps-recursive
  875. ps-am:
  876. uninstall-am: uninstall-pkgconfigDATA
  877. .MAKE: $(am__recursive_targets) all install-am install-strip
  878. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  879. am--refresh check check-am clean clean-cscope clean-generic \
  880. clean-libtool cscope cscopelist-am ctags ctags-am dist \
  881. dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
  882. dist-xz dist-zip distcheck distclean distclean-generic \
  883. distclean-hdr distclean-libtool distclean-tags distcleancheck \
  884. distdir distuninstallcheck dvi dvi-am html html-am info \
  885. info-am install install-am install-data install-data-am \
  886. install-dvi install-dvi-am install-exec install-exec-am \
  887. install-html install-html-am install-info install-info-am \
  888. install-man install-pdf install-pdf-am install-pkgconfigDATA \
  889. install-ps install-ps-am install-strip installcheck \
  890. installcheck-am installdirs installdirs-am maintainer-clean \
  891. maintainer-clean-generic mostlyclean mostlyclean-generic \
  892. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  893. uninstall-am uninstall-pkgconfigDATA
  894. .PRECIOUS: Makefile
  895. .PHONY: buildlib
  896. buildlib:
  897. @echo 'ERROR: Running "make buildlib LIBRARY=libexpatw.la"' >&2
  898. @echo 'ERROR: is no longer supported. INSTEAD please:' >&2
  899. @echo 'ERROR:' >&2
  900. @echo 'ERROR: * Mass-patch Makefile.am, e.g.' >&2
  901. @echo 'ERROR: # find -name Makefile.am -exec sed \' >&2
  902. @echo 'ERROR: -e "s,libexpat\.la,libexpatw.la," \' >&2
  903. @echo 'ERROR: -e "s,libexpat_la,libexpatw_la," \' >&2
  904. @echo 'ERROR: -i {} +' >&2
  905. @echo 'ERROR:' >&2
  906. @echo 'ERROR: * Run automake to re-generate Makefile.in files' >&2
  907. @echo 'ERROR:' >&2
  908. @echo 'ERROR: * Use "./configure --without-xmlwf" and/or' >&2
  909. @echo 'ERROR: "make -C lib all install" to bypass compilation' >&2
  910. @echo 'ERROR: of xmlwf (e.g. with -DXML_UNICODE)' >&2
  911. @echo 'ERROR:' >&2
  912. @false
  913. .PHONY: run-benchmark
  914. run-benchmark:
  915. $(MAKE) -C tests/benchmark
  916. ./run.sh tests/benchmark/benchmark@EXEEXT@ -n $(top_srcdir)/../testdata/largefiles/recset.xml 65535 3
  917. .PHONY: download-xmlts-zip
  918. download-xmlts-zip:
  919. if test "$(XMLTS_ZIP)" = ""; then \
  920. wget --output-document=tests/xmlts.zip \
  921. https://www.w3.org/XML/Test/xmlts20080827.zip; \
  922. else \
  923. cp $(XMLTS_ZIP) tests/xmlts.zip; \
  924. fi
  925. tests/xmlts.zip:
  926. $(MAKE) download-xmlts-zip
  927. .PHONY: extract-xmlts-zip
  928. extract-xmlts-zip: tests/xmlts.zip
  929. [ -f $(builddir)/tests/xmlts.zip ] || $(MAKE) download-xmlts-zip # vpath workaround
  930. cd tests && unzip -q xmlts.zip
  931. tests/xmlconf: tests/xmlts.zip
  932. $(MAKE) extract-xmlts-zip
  933. .PHONY: run-xmltest
  934. run-xmltest: tests/xmlconf
  935. @WITH_XMLWF_TRUE@ [ -d $(builddir)/tests/xmlconf ] || $(MAKE) extract-xmlts-zip # vpath workaround
  936. @WITH_XMLWF_TRUE@ $(MAKE) -C lib
  937. @WITH_XMLWF_TRUE@ $(MAKE) -C xmlwf
  938. @WITH_XMLWF_TRUE@ $(srcdir)/tests/xmltest.sh "$(abs_builddir)/run.sh $(abs_builddir)/xmlwf/xmlwf@EXEEXT@" 2>&1 | tee $(builddir)/tests/xmltest.log
  939. @WITH_XMLWF_TRUE@ $(srcdir)/fix-xmltest-log.sh $(builddir)/tests/xmltest.log
  940. @WITH_XMLWF_TRUE@ diff -u $(srcdir)/tests/xmltest.log.expected $(builddir)/tests/xmltest.log
  941. @WITH_XMLWF_FALSE@ @echo 'ERROR: xmlwf is needed for "make run-xmltest".' >&2
  942. @WITH_XMLWF_FALSE@ @echo 'ERROR: Please re-configure without --without-xmlwf.' >&2
  943. @WITH_XMLWF_FALSE@ @false
  944. .PHONY: qa
  945. qa:
  946. QA_COMPILER=clang QA_SANITIZER=address ./qa.sh
  947. QA_COMPILER=clang QA_SANITIZER=memory ./qa.sh
  948. QA_COMPILER=clang QA_SANITIZER=undefined ./qa.sh
  949. QA_COMPILER=gcc QA_PROCESSOR=gcov ./qa.sh
  950. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  951. # Otherwise a system limit (for SysV at least) may be exceeded.
  952. .NOEXPORT: