Makefile.in 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849
  1. # Makefile.in generated by automake 1.16.3 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2020 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 Tomasz Kłoczko <[email protected]>
  22. # Copyright (c) 2019 David Loffredo <[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 = lib
  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 $(include_HEADERS) \
  134. $(am__DIST_COMMON)
  135. mkinstalldirs = $(install_sh) -d
  136. CONFIG_HEADER = $(top_builddir)/expat_config.h
  137. CONFIG_CLEAN_FILES =
  138. CONFIG_CLEAN_VPATH_FILES =
  139. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  140. am__vpath_adj = case $$p in \
  141. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  142. *) f=$$p;; \
  143. esac;
  144. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  145. am__install_max = 40
  146. am__nobase_strip_setup = \
  147. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  148. am__nobase_strip = \
  149. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  150. am__nobase_list = $(am__nobase_strip_setup); \
  151. for p in $$list; do echo "$$p $$p"; done | \
  152. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  153. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  154. if (++n[$$2] == $(am__install_max)) \
  155. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  156. END { for (dir in files) print dir, files[dir] }'
  157. am__base_list = \
  158. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  159. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  160. am__uninstall_files_from_dir = { \
  161. test -z "$$files" \
  162. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  163. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  164. $(am__cd) "$$dir" && rm -f $$files; }; \
  165. }
  166. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" \
  167. "$(DESTDIR)$(includedir)"
  168. LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
  169. libexpat_la_DEPENDENCIES = libexpatinternal.la
  170. am_libexpat_la_OBJECTS =
  171. libexpat_la_OBJECTS = $(am_libexpat_la_OBJECTS)
  172. AM_V_lt = $(am__v_lt_@AM_V@)
  173. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  174. am__v_lt_0 = --silent
  175. am__v_lt_1 =
  176. libexpat_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  177. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  178. $(libexpat_la_LDFLAGS) $(LDFLAGS) -o $@
  179. libexpatinternal_la_LIBADD =
  180. am_libexpatinternal_la_OBJECTS = xmlparse.lo xmltok.lo xmlrole.lo
  181. libexpatinternal_la_OBJECTS = $(am_libexpatinternal_la_OBJECTS)
  182. AM_V_P = $(am__v_P_@AM_V@)
  183. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  184. am__v_P_0 = false
  185. am__v_P_1 = :
  186. AM_V_GEN = $(am__v_GEN_@AM_V@)
  187. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  188. am__v_GEN_0 = @echo " GEN " $@;
  189. am__v_GEN_1 =
  190. AM_V_at = $(am__v_at_@AM_V@)
  191. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  192. am__v_at_0 = @
  193. am__v_at_1 =
  194. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  195. depcomp = $(SHELL) $(top_srcdir)/conftools/depcomp
  196. am__maybe_remake_depfiles = depfiles
  197. am__depfiles_remade = ./$(DEPDIR)/xmlparse.Plo ./$(DEPDIR)/xmlrole.Plo \
  198. ./$(DEPDIR)/xmltok.Plo
  199. am__mv = mv -f
  200. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  201. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  202. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  203. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  204. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  205. $(AM_CFLAGS) $(CFLAGS)
  206. AM_V_CC = $(am__v_CC_@AM_V@)
  207. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  208. am__v_CC_0 = @echo " CC " $@;
  209. am__v_CC_1 =
  210. CCLD = $(CC)
  211. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  212. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  213. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  214. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  215. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  216. am__v_CCLD_0 = @echo " CCLD " $@;
  217. am__v_CCLD_1 =
  218. SOURCES = $(libexpat_la_SOURCES) $(libexpatinternal_la_SOURCES)
  219. DIST_SOURCES = $(libexpat_la_SOURCES) $(libexpatinternal_la_SOURCES)
  220. am__can_run_installinfo = \
  221. case $$AM_UPDATE_INFO_DIR in \
  222. n|no|NO) false;; \
  223. *) (install-info --version) >/dev/null 2>&1;; \
  224. esac
  225. DATA = $(doc_DATA)
  226. HEADERS = $(include_HEADERS)
  227. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  228. # Read a list of newline-separated strings from the standard input,
  229. # and print each of them once, without duplicates. Input order is
  230. # *not* preserved.
  231. am__uniquify_input = $(AWK) '\
  232. BEGIN { nonempty = 0; } \
  233. { items[$$0] = 1; nonempty = 1; } \
  234. END { if (nonempty) { for (i in items) print i; }; } \
  235. '
  236. # Make sure the list of sources is unique. This is necessary because,
  237. # e.g., the same source file might be shared among _SOURCES variables
  238. # for different programs/libraries.
  239. am__define_uniq_tagged_files = \
  240. list='$(am__tagged_files)'; \
  241. unique=`for i in $$list; do \
  242. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  243. done | $(am__uniquify_input)`
  244. ETAGS = etags
  245. CTAGS = ctags
  246. am__DIST_COMMON = $(srcdir)/Makefile.in \
  247. $(top_srcdir)/conftools/depcomp
  248. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  249. ACLOCAL = @ACLOCAL@
  250. AMTAR = @AMTAR@
  251. AM_CFLAGS = @AM_CFLAGS@
  252. AM_CPPFLAGS = @AM_CPPFLAGS@
  253. AM_CXXFLAGS = @AM_CXXFLAGS@
  254. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  255. AM_LDFLAGS = @AM_LDFLAGS@
  256. AR = @AR@
  257. AS = @AS@
  258. AUTOCONF = @AUTOCONF@
  259. AUTOHEADER = @AUTOHEADER@
  260. AUTOMAKE = @AUTOMAKE@
  261. AWK = @AWK@
  262. CC = @CC@
  263. CCDEPMODE = @CCDEPMODE@
  264. CFLAGS = @CFLAGS@
  265. CPP = @CPP@
  266. CPPFLAGS = @CPPFLAGS@
  267. CXX = @CXX@
  268. CXXCPP = @CXXCPP@
  269. CXXDEPMODE = @CXXDEPMODE@
  270. CXXFLAGS = @CXXFLAGS@
  271. CYGPATH_W = @CYGPATH_W@
  272. DEFS = @DEFS@
  273. DEPDIR = @DEPDIR@
  274. DLLTOOL = @DLLTOOL@
  275. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  276. DSYMUTIL = @DSYMUTIL@
  277. DUMPBIN = @DUMPBIN@
  278. ECHO_C = @ECHO_C@
  279. ECHO_N = @ECHO_N@
  280. ECHO_T = @ECHO_T@
  281. EGREP = @EGREP@
  282. EXEEXT = @EXEEXT@
  283. EXPAT_ATTR_INFO = @EXPAT_ATTR_INFO@
  284. EXPAT_CHAR_TYPE = @EXPAT_CHAR_TYPE@
  285. EXPAT_CONTEXT_BYTES = @EXPAT_CONTEXT_BYTES@
  286. EXPAT_DTD = @EXPAT_DTD@
  287. EXPAT_LARGE_SIZE = @EXPAT_LARGE_SIZE@
  288. EXPAT_MIN_SIZE = @EXPAT_MIN_SIZE@
  289. EXPAT_NS = @EXPAT_NS@
  290. FGREP = @FGREP@
  291. FILEMAP = @FILEMAP@
  292. GREP = @GREP@
  293. INSTALL = @INSTALL@
  294. INSTALL_DATA = @INSTALL_DATA@
  295. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  296. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  297. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  298. LD = @LD@
  299. LDFLAGS = @LDFLAGS@
  300. LIBAGE = @LIBAGE@
  301. LIBCURRENT = @LIBCURRENT@
  302. LIBDIR_BASENAME = @LIBDIR_BASENAME@
  303. LIBOBJS = @LIBOBJS@
  304. LIBREVISION = @LIBREVISION@
  305. LIBS = @LIBS@
  306. LIBTOOL = @LIBTOOL@
  307. LIPO = @LIPO@
  308. LN_S = @LN_S@
  309. LTLIBOBJS = @LTLIBOBJS@
  310. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  311. MAKEINFO = @MAKEINFO@
  312. MANIFEST_TOOL = @MANIFEST_TOOL@
  313. MKDIR_P = @MKDIR_P@
  314. NM = @NM@
  315. NMEDIT = @NMEDIT@
  316. OBJDUMP = @OBJDUMP@
  317. OBJEXT = @OBJEXT@
  318. OTOOL = @OTOOL@
  319. OTOOL64 = @OTOOL64@
  320. PACKAGE = @PACKAGE@
  321. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  322. PACKAGE_NAME = @PACKAGE_NAME@
  323. PACKAGE_STRING = @PACKAGE_STRING@
  324. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  325. PACKAGE_URL = @PACKAGE_URL@
  326. PACKAGE_VERSION = @PACKAGE_VERSION@
  327. PATH_SEPARATOR = @PATH_SEPARATOR@
  328. RANLIB = @RANLIB@
  329. SED = @SED@
  330. SET_MAKE = @SET_MAKE@
  331. SHELL = @SHELL@
  332. SO_MAJOR = @SO_MAJOR@
  333. SO_MINOR = @SO_MINOR@
  334. SO_PATCH = @SO_PATCH@
  335. STRIP = @STRIP@
  336. VERSION = @VERSION@
  337. _EXPAT_OUTPUT_NAME = @_EXPAT_OUTPUT_NAME@
  338. abs_builddir = @abs_builddir@
  339. abs_srcdir = @abs_srcdir@
  340. abs_top_builddir = @abs_top_builddir@
  341. abs_top_srcdir = @abs_top_srcdir@
  342. ac_ct_AR = @ac_ct_AR@
  343. ac_ct_CC = @ac_ct_CC@
  344. ac_ct_CXX = @ac_ct_CXX@
  345. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  346. ac_cv_sizeof_void_p = @ac_cv_sizeof_void_p@
  347. am__include = @am__include@
  348. am__leading_dot = @am__leading_dot@
  349. am__quote = @am__quote@
  350. am__tar = @am__tar@
  351. am__untar = @am__untar@
  352. bindir = @bindir@
  353. build = @build@
  354. build_alias = @build_alias@
  355. build_cpu = @build_cpu@
  356. build_os = @build_os@
  357. build_vendor = @build_vendor@
  358. builddir = @builddir@
  359. datadir = @datadir@
  360. datarootdir = @datarootdir@
  361. docdir = @docdir@
  362. dvidir = @dvidir@
  363. exec_prefix = @exec_prefix@
  364. host = @host@
  365. host_alias = @host_alias@
  366. host_cpu = @host_cpu@
  367. host_os = @host_os@
  368. host_vendor = @host_vendor@
  369. htmldir = @htmldir@
  370. includedir = @includedir@
  371. infodir = @infodir@
  372. install_sh = @install_sh@
  373. libdir = @libdir@
  374. libexecdir = @libexecdir@
  375. localedir = @localedir@
  376. localstatedir = @localstatedir@
  377. mandir = @mandir@
  378. mkdir_p = @mkdir_p@
  379. oldincludedir = @oldincludedir@
  380. pdfdir = @pdfdir@
  381. prefix = @prefix@
  382. program_transform_name = @program_transform_name@
  383. psdir = @psdir@
  384. runstatedir = @runstatedir@
  385. sbindir = @sbindir@
  386. sharedstatedir = @sharedstatedir@
  387. srcdir = @srcdir@
  388. sysconfdir = @sysconfdir@
  389. target_alias = @target_alias@
  390. top_build_prefix = @top_build_prefix@
  391. top_builddir = @top_builddir@
  392. top_srcdir = @top_srcdir@
  393. include_HEADERS = \
  394. ../expat_config.h \
  395. expat.h \
  396. expat_external.h
  397. lib_LTLIBRARIES = libexpat.la
  398. noinst_LTLIBRARIES = libexpatinternal.la
  399. libexpat_la_LDFLAGS = \
  400. @AM_LDFLAGS@ \
  401. -no-undefined \
  402. -version-info @LIBCURRENT@:@LIBREVISION@:@LIBAGE@
  403. libexpat_la_SOURCES =
  404. # This layer of indirection allows
  405. # the test suite to access internal symbols
  406. # despite compiling with -fvisibility=hidden
  407. libexpatinternal_la_SOURCES = \
  408. xmlparse.c \
  409. xmltok.c \
  410. xmlrole.c
  411. libexpat_la_LIBADD = libexpatinternal.la
  412. doc_DATA = \
  413. ../AUTHORS \
  414. ../Changes
  415. EXTRA_DIST = \
  416. ascii.h \
  417. asciitab.h \
  418. expat_external.h \
  419. expat.h \
  420. iasciitab.h \
  421. internal.h \
  422. latin1tab.h \
  423. libexpat.def \
  424. libexpatw.def \
  425. nametab.h \
  426. siphash.h \
  427. utf8tab.h \
  428. winconfig.h \
  429. xmlrole.h \
  430. xmltok.h \
  431. xmltok_impl.c \
  432. xmltok_impl.h \
  433. xmltok_ns.c
  434. all: all-am
  435. .SUFFIXES:
  436. .SUFFIXES: .c .lo .o .obj
  437. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  438. @for dep in $?; do \
  439. case '$(am__configure_deps)' in \
  440. *$$dep*) \
  441. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  442. && { if test -f $@; then exit 0; else break; fi; }; \
  443. exit 1;; \
  444. esac; \
  445. done; \
  446. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/Makefile'; \
  447. $(am__cd) $(top_srcdir) && \
  448. $(AUTOMAKE) --gnu lib/Makefile
  449. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  450. @case '$?' in \
  451. *config.status*) \
  452. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  453. *) \
  454. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  455. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  456. esac;
  457. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  458. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  459. $(top_srcdir)/configure: $(am__configure_deps)
  460. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  461. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  462. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  463. $(am__aclocal_m4_deps):
  464. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  465. @$(NORMAL_INSTALL)
  466. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  467. list2=; for p in $$list; do \
  468. if test -f $$p; then \
  469. list2="$$list2 $$p"; \
  470. else :; fi; \
  471. done; \
  472. test -z "$$list2" || { \
  473. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  474. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  475. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  476. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  477. }
  478. uninstall-libLTLIBRARIES:
  479. @$(NORMAL_UNINSTALL)
  480. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  481. for p in $$list; do \
  482. $(am__strip_dir) \
  483. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  484. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  485. done
  486. clean-libLTLIBRARIES:
  487. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  488. @list='$(lib_LTLIBRARIES)'; \
  489. locs=`for p in $$list; do echo $$p; done | \
  490. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  491. sort -u`; \
  492. test -z "$$locs" || { \
  493. echo rm -f $${locs}; \
  494. rm -f $${locs}; \
  495. }
  496. clean-noinstLTLIBRARIES:
  497. -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
  498. @list='$(noinst_LTLIBRARIES)'; \
  499. locs=`for p in $$list; do echo $$p; done | \
  500. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  501. sort -u`; \
  502. test -z "$$locs" || { \
  503. echo rm -f $${locs}; \
  504. rm -f $${locs}; \
  505. }
  506. libexpat.la: $(libexpat_la_OBJECTS) $(libexpat_la_DEPENDENCIES) $(EXTRA_libexpat_la_DEPENDENCIES)
  507. $(AM_V_CCLD)$(libexpat_la_LINK) -rpath $(libdir) $(libexpat_la_OBJECTS) $(libexpat_la_LIBADD) $(LIBS)
  508. libexpatinternal.la: $(libexpatinternal_la_OBJECTS) $(libexpatinternal_la_DEPENDENCIES) $(EXTRA_libexpatinternal_la_DEPENDENCIES)
  509. $(AM_V_CCLD)$(LINK) $(libexpatinternal_la_OBJECTS) $(libexpatinternal_la_LIBADD) $(LIBS)
  510. mostlyclean-compile:
  511. -rm -f *.$(OBJEXT)
  512. distclean-compile:
  513. -rm -f *.tab.c
  514. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmlparse.Plo@am__quote@ # am--include-marker
  515. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmlrole.Plo@am__quote@ # am--include-marker
  516. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmltok.Plo@am__quote@ # am--include-marker
  517. $(am__depfiles_remade):
  518. @$(MKDIR_P) $(@D)
  519. @echo '# dummy' >$@-t && $(am__mv) $@-t $@
  520. am--depfiles: $(am__depfiles_remade)
  521. .c.o:
  522. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  523. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  524. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  525. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  526. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  527. .c.obj:
  528. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  529. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  530. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  531. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  532. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  533. .c.lo:
  534. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  535. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  536. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  537. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  538. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  539. mostlyclean-libtool:
  540. -rm -f *.lo
  541. clean-libtool:
  542. -rm -rf .libs _libs
  543. install-docDATA: $(doc_DATA)
  544. @$(NORMAL_INSTALL)
  545. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  546. if test -n "$$list"; then \
  547. echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
  548. $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
  549. fi; \
  550. for p in $$list; do \
  551. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  552. echo "$$d$$p"; \
  553. done | $(am__base_list) | \
  554. while read files; do \
  555. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
  556. $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
  557. done
  558. uninstall-docDATA:
  559. @$(NORMAL_UNINSTALL)
  560. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  561. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  562. dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
  563. install-includeHEADERS: $(include_HEADERS)
  564. @$(NORMAL_INSTALL)
  565. @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
  566. if test -n "$$list"; then \
  567. echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
  568. $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
  569. fi; \
  570. for p in $$list; do \
  571. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  572. echo "$$d$$p"; \
  573. done | $(am__base_list) | \
  574. while read files; do \
  575. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
  576. $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
  577. done
  578. uninstall-includeHEADERS:
  579. @$(NORMAL_UNINSTALL)
  580. @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
  581. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  582. dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
  583. ID: $(am__tagged_files)
  584. $(am__define_uniq_tagged_files); mkid -fID $$unique
  585. tags: tags-am
  586. TAGS: tags
  587. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  588. set x; \
  589. here=`pwd`; \
  590. $(am__define_uniq_tagged_files); \
  591. shift; \
  592. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  593. test -n "$$unique" || unique=$$empty_fix; \
  594. if test $$# -gt 0; then \
  595. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  596. "$$@" $$unique; \
  597. else \
  598. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  599. $$unique; \
  600. fi; \
  601. fi
  602. ctags: ctags-am
  603. CTAGS: ctags
  604. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  605. $(am__define_uniq_tagged_files); \
  606. test -z "$(CTAGS_ARGS)$$unique" \
  607. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  608. $$unique
  609. GTAGS:
  610. here=`$(am__cd) $(top_builddir) && pwd` \
  611. && $(am__cd) $(top_srcdir) \
  612. && gtags -i $(GTAGS_ARGS) "$$here"
  613. cscopelist: cscopelist-am
  614. cscopelist-am: $(am__tagged_files)
  615. list='$(am__tagged_files)'; \
  616. case "$(srcdir)" in \
  617. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  618. *) sdir=$(subdir)/$(srcdir) ;; \
  619. esac; \
  620. for i in $$list; do \
  621. if test -f "$$i"; then \
  622. echo "$(subdir)/$$i"; \
  623. else \
  624. echo "$$sdir/$$i"; \
  625. fi; \
  626. done >> $(top_builddir)/cscope.files
  627. distclean-tags:
  628. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  629. distdir: $(BUILT_SOURCES)
  630. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  631. distdir-am: $(DISTFILES)
  632. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  633. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  634. list='$(DISTFILES)'; \
  635. dist_files=`for file in $$list; do echo $$file; done | \
  636. sed -e "s|^$$srcdirstrip/||;t" \
  637. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  638. case $$dist_files in \
  639. */*) $(MKDIR_P) `echo "$$dist_files" | \
  640. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  641. sort -u` ;; \
  642. esac; \
  643. for file in $$dist_files; do \
  644. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  645. if test -d $$d/$$file; then \
  646. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  647. if test -d "$(distdir)/$$file"; then \
  648. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  649. fi; \
  650. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  651. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  652. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  653. fi; \
  654. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  655. else \
  656. test -f "$(distdir)/$$file" \
  657. || cp -p $$d/$$file "$(distdir)/$$file" \
  658. || exit 1; \
  659. fi; \
  660. done
  661. check-am: all-am
  662. check: check-am
  663. all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
  664. installdirs:
  665. for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(includedir)"; do \
  666. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  667. done
  668. install: install-am
  669. install-exec: install-exec-am
  670. install-data: install-data-am
  671. uninstall: uninstall-am
  672. install-am: all-am
  673. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  674. installcheck: installcheck-am
  675. install-strip:
  676. if test -z '$(STRIP)'; then \
  677. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  678. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  679. install; \
  680. else \
  681. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  682. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  683. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  684. fi
  685. mostlyclean-generic:
  686. clean-generic:
  687. distclean-generic:
  688. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  689. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  690. maintainer-clean-generic:
  691. @echo "This command is intended for maintainers to use"
  692. @echo "it deletes files that may require special tools to rebuild."
  693. clean: clean-am
  694. clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  695. clean-noinstLTLIBRARIES mostlyclean-am
  696. distclean: distclean-am
  697. -rm -f ./$(DEPDIR)/xmlparse.Plo
  698. -rm -f ./$(DEPDIR)/xmlrole.Plo
  699. -rm -f ./$(DEPDIR)/xmltok.Plo
  700. -rm -f Makefile
  701. distclean-am: clean-am distclean-compile distclean-generic \
  702. distclean-tags
  703. dvi: dvi-am
  704. dvi-am:
  705. html: html-am
  706. html-am:
  707. info: info-am
  708. info-am:
  709. install-data-am: install-docDATA install-includeHEADERS
  710. @$(NORMAL_INSTALL)
  711. $(MAKE) $(AM_MAKEFLAGS) install-data-hook
  712. install-dvi: install-dvi-am
  713. install-dvi-am:
  714. install-exec-am: install-libLTLIBRARIES
  715. install-html: install-html-am
  716. install-html-am:
  717. install-info: install-info-am
  718. install-info-am:
  719. install-man:
  720. install-pdf: install-pdf-am
  721. install-pdf-am:
  722. install-ps: install-ps-am
  723. install-ps-am:
  724. installcheck-am:
  725. maintainer-clean: maintainer-clean-am
  726. -rm -f ./$(DEPDIR)/xmlparse.Plo
  727. -rm -f ./$(DEPDIR)/xmlrole.Plo
  728. -rm -f ./$(DEPDIR)/xmltok.Plo
  729. -rm -f Makefile
  730. maintainer-clean-am: distclean-am maintainer-clean-generic
  731. mostlyclean: mostlyclean-am
  732. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  733. mostlyclean-libtool
  734. pdf: pdf-am
  735. pdf-am:
  736. ps: ps-am
  737. ps-am:
  738. uninstall-am: uninstall-docDATA uninstall-includeHEADERS \
  739. uninstall-libLTLIBRARIES uninstall-local
  740. .MAKE: install-am install-data-am install-strip
  741. .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
  742. clean-generic clean-libLTLIBRARIES clean-libtool \
  743. clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \
  744. distclean-compile distclean-generic distclean-libtool \
  745. distclean-tags distdir dvi dvi-am html html-am info info-am \
  746. install install-am install-data install-data-am \
  747. install-data-hook install-docDATA install-dvi install-dvi-am \
  748. install-exec install-exec-am install-html install-html-am \
  749. install-includeHEADERS install-info install-info-am \
  750. install-libLTLIBRARIES install-man install-pdf install-pdf-am \
  751. install-ps install-ps-am install-strip installcheck \
  752. installcheck-am installdirs maintainer-clean \
  753. maintainer-clean-generic mostlyclean mostlyclean-compile \
  754. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  755. tags tags-am uninstall uninstall-am uninstall-docDATA \
  756. uninstall-includeHEADERS uninstall-libLTLIBRARIES \
  757. uninstall-local
  758. .PRECIOUS: Makefile
  759. install-data-hook:
  760. cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
  761. uninstall-local:
  762. $(RM) "$(DESTDIR)$(docdir)/changelog"
  763. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  764. # Otherwise a system limit (for SysV at least) may be exceeded.
  765. .NOEXPORT: