Makefile.in 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. # Makefile.in generated by automake 1.16.5 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2021 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. #
  13. # __ __ _
  14. # ___\ \/ /_ __ __ _| |_
  15. # / _ \\ /| '_ \ / _` | __|
  16. # | __// \| |_) | (_| | |_
  17. # \___/_/\_\ .__/ \__,_|\__|
  18. # |_| XML parser
  19. #
  20. # Copyright (c) 2017-2021 Sebastian Pipping <[email protected]>
  21. # Copyright (c) 2017 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. am__DIST_COMMON = $(srcdir)/Makefile.in \
  245. $(top_srcdir)/conftools/depcomp
  246. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  247. ACLOCAL = @ACLOCAL@
  248. AMTAR = @AMTAR@
  249. AM_CFLAGS = @AM_CFLAGS@
  250. AM_CPPFLAGS = @AM_CPPFLAGS@
  251. AM_CXXFLAGS = @AM_CXXFLAGS@
  252. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  253. AM_LDFLAGS = @AM_LDFLAGS@
  254. AR = @AR@
  255. AS = @AS@
  256. AUTOCONF = @AUTOCONF@
  257. AUTOHEADER = @AUTOHEADER@
  258. AUTOMAKE = @AUTOMAKE@
  259. AWK = @AWK@
  260. CC = @CC@
  261. CCDEPMODE = @CCDEPMODE@
  262. CFLAGS = @CFLAGS@
  263. CMAKE_SHARED_LIBRARY_PREFIX = @CMAKE_SHARED_LIBRARY_PREFIX@
  264. CPPFLAGS = @CPPFLAGS@
  265. CSCOPE = @CSCOPE@
  266. CTAGS = @CTAGS@
  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. ETAGS = @ETAGS@
  283. EXEEXT = @EXEEXT@
  284. EXPAT_ATTR_INFO = @EXPAT_ATTR_INFO@
  285. EXPAT_CHAR_TYPE = @EXPAT_CHAR_TYPE@
  286. EXPAT_CONTEXT_BYTES = @EXPAT_CONTEXT_BYTES@
  287. EXPAT_DTD = @EXPAT_DTD@
  288. EXPAT_LARGE_SIZE = @EXPAT_LARGE_SIZE@
  289. EXPAT_MIN_SIZE = @EXPAT_MIN_SIZE@
  290. EXPAT_NS = @EXPAT_NS@
  291. FGREP = @FGREP@
  292. FILEMAP = @FILEMAP@
  293. GREP = @GREP@
  294. INSTALL = @INSTALL@
  295. INSTALL_DATA = @INSTALL_DATA@
  296. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  297. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  298. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  299. LD = @LD@
  300. LDFLAGS = @LDFLAGS@
  301. LIBAGE = @LIBAGE@
  302. LIBCURRENT = @LIBCURRENT@
  303. LIBDIR_BASENAME = @LIBDIR_BASENAME@
  304. LIBM = @LIBM@
  305. LIBOBJS = @LIBOBJS@
  306. LIBREVISION = @LIBREVISION@
  307. LIBS = @LIBS@
  308. LIBTOOL = @LIBTOOL@
  309. LIPO = @LIPO@
  310. LN_S = @LN_S@
  311. LTLIBOBJS = @LTLIBOBJS@
  312. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  313. MAKEINFO = @MAKEINFO@
  314. MANIFEST_TOOL = @MANIFEST_TOOL@
  315. MKDIR_P = @MKDIR_P@
  316. NM = @NM@
  317. NMEDIT = @NMEDIT@
  318. OBJDUMP = @OBJDUMP@
  319. OBJEXT = @OBJEXT@
  320. OTOOL = @OTOOL@
  321. OTOOL64 = @OTOOL64@
  322. PACKAGE = @PACKAGE@
  323. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  324. PACKAGE_NAME = @PACKAGE_NAME@
  325. PACKAGE_STRING = @PACKAGE_STRING@
  326. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  327. PACKAGE_URL = @PACKAGE_URL@
  328. PACKAGE_VERSION = @PACKAGE_VERSION@
  329. PATH_SEPARATOR = @PATH_SEPARATOR@
  330. RANLIB = @RANLIB@
  331. SED = @SED@
  332. SET_MAKE = @SET_MAKE@
  333. SHELL = @SHELL@
  334. SO_MAJOR = @SO_MAJOR@
  335. SO_MINOR = @SO_MINOR@
  336. SO_PATCH = @SO_PATCH@
  337. STRIP = @STRIP@
  338. VERSION = @VERSION@
  339. abs_builddir = @abs_builddir@
  340. abs_srcdir = @abs_srcdir@
  341. abs_top_builddir = @abs_top_builddir@
  342. abs_top_srcdir = @abs_top_srcdir@
  343. ac_ct_AR = @ac_ct_AR@
  344. ac_ct_CC = @ac_ct_CC@
  345. ac_ct_CXX = @ac_ct_CXX@
  346. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  347. ac_cv_sizeof_void_p = @ac_cv_sizeof_void_p@
  348. am__include = @am__include@
  349. am__leading_dot = @am__leading_dot@
  350. am__quote = @am__quote@
  351. am__tar = @am__tar@
  352. am__untar = @am__untar@
  353. bindir = @bindir@
  354. build = @build@
  355. build_alias = @build_alias@
  356. build_cpu = @build_cpu@
  357. build_os = @build_os@
  358. build_vendor = @build_vendor@
  359. builddir = @builddir@
  360. datadir = @datadir@
  361. datarootdir = @datarootdir@
  362. docdir = @docdir@
  363. dvidir = @dvidir@
  364. exec_prefix = @exec_prefix@
  365. host = @host@
  366. host_alias = @host_alias@
  367. host_cpu = @host_cpu@
  368. host_os = @host_os@
  369. host_vendor = @host_vendor@
  370. htmldir = @htmldir@
  371. includedir = @includedir@
  372. infodir = @infodir@
  373. install_sh = @install_sh@
  374. libdir = @libdir@
  375. libexecdir = @libexecdir@
  376. localedir = @localedir@
  377. localstatedir = @localstatedir@
  378. mandir = @mandir@
  379. mkdir_p = @mkdir_p@
  380. oldincludedir = @oldincludedir@
  381. pdfdir = @pdfdir@
  382. prefix = @prefix@
  383. program_transform_name = @program_transform_name@
  384. psdir = @psdir@
  385. runstatedir = @runstatedir@
  386. sbindir = @sbindir@
  387. sharedstatedir = @sharedstatedir@
  388. srcdir = @srcdir@
  389. sysconfdir = @sysconfdir@
  390. target_alias = @target_alias@
  391. top_build_prefix = @top_build_prefix@
  392. top_builddir = @top_builddir@
  393. top_srcdir = @top_srcdir@
  394. include_HEADERS = \
  395. ../expat_config.h \
  396. expat.h \
  397. expat_external.h
  398. lib_LTLIBRARIES = libexpat.la
  399. noinst_LTLIBRARIES = libexpatinternal.la
  400. libexpat_la_LDFLAGS = \
  401. @AM_LDFLAGS@ \
  402. @LIBM@ \
  403. -no-undefined \
  404. -version-info @LIBCURRENT@:@LIBREVISION@:@LIBAGE@
  405. libexpat_la_SOURCES =
  406. # This layer of indirection allows
  407. # the test suite to access internal symbols
  408. # despite compiling with -fvisibility=hidden
  409. libexpatinternal_la_SOURCES = \
  410. xmlparse.c \
  411. xmltok.c \
  412. xmlrole.c
  413. libexpat_la_LIBADD = libexpatinternal.la
  414. doc_DATA = \
  415. ../AUTHORS \
  416. ../Changes
  417. EXTRA_DIST = \
  418. ascii.h \
  419. asciitab.h \
  420. expat_external.h \
  421. expat.h \
  422. iasciitab.h \
  423. internal.h \
  424. latin1tab.h \
  425. libexpat.def \
  426. libexpatw.def \
  427. nametab.h \
  428. siphash.h \
  429. utf8tab.h \
  430. winconfig.h \
  431. xmlrole.h \
  432. xmltok.h \
  433. xmltok_impl.c \
  434. xmltok_impl.h \
  435. xmltok_ns.c
  436. all: all-am
  437. .SUFFIXES:
  438. .SUFFIXES: .c .lo .o .obj
  439. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  440. @for dep in $?; do \
  441. case '$(am__configure_deps)' in \
  442. *$$dep*) \
  443. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  444. && { if test -f $@; then exit 0; else break; fi; }; \
  445. exit 1;; \
  446. esac; \
  447. done; \
  448. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/Makefile'; \
  449. $(am__cd) $(top_srcdir) && \
  450. $(AUTOMAKE) --gnu lib/Makefile
  451. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  452. @case '$?' in \
  453. *config.status*) \
  454. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  455. *) \
  456. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  457. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  458. esac;
  459. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  460. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  461. $(top_srcdir)/configure: $(am__configure_deps)
  462. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  463. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  464. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  465. $(am__aclocal_m4_deps):
  466. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  467. @$(NORMAL_INSTALL)
  468. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  469. list2=; for p in $$list; do \
  470. if test -f $$p; then \
  471. list2="$$list2 $$p"; \
  472. else :; fi; \
  473. done; \
  474. test -z "$$list2" || { \
  475. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  476. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  477. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  478. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  479. }
  480. uninstall-libLTLIBRARIES:
  481. @$(NORMAL_UNINSTALL)
  482. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  483. for p in $$list; do \
  484. $(am__strip_dir) \
  485. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  486. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  487. done
  488. clean-libLTLIBRARIES:
  489. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  490. @list='$(lib_LTLIBRARIES)'; \
  491. locs=`for p in $$list; do echo $$p; done | \
  492. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  493. sort -u`; \
  494. test -z "$$locs" || { \
  495. echo rm -f $${locs}; \
  496. rm -f $${locs}; \
  497. }
  498. clean-noinstLTLIBRARIES:
  499. -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
  500. @list='$(noinst_LTLIBRARIES)'; \
  501. locs=`for p in $$list; do echo $$p; done | \
  502. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  503. sort -u`; \
  504. test -z "$$locs" || { \
  505. echo rm -f $${locs}; \
  506. rm -f $${locs}; \
  507. }
  508. libexpat.la: $(libexpat_la_OBJECTS) $(libexpat_la_DEPENDENCIES) $(EXTRA_libexpat_la_DEPENDENCIES)
  509. $(AM_V_CCLD)$(libexpat_la_LINK) -rpath $(libdir) $(libexpat_la_OBJECTS) $(libexpat_la_LIBADD) $(LIBS)
  510. libexpatinternal.la: $(libexpatinternal_la_OBJECTS) $(libexpatinternal_la_DEPENDENCIES) $(EXTRA_libexpatinternal_la_DEPENDENCIES)
  511. $(AM_V_CCLD)$(LINK) $(libexpatinternal_la_OBJECTS) $(libexpatinternal_la_LIBADD) $(LIBS)
  512. mostlyclean-compile:
  513. -rm -f *.$(OBJEXT)
  514. distclean-compile:
  515. -rm -f *.tab.c
  516. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmlparse.Plo@am__quote@ # am--include-marker
  517. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmlrole.Plo@am__quote@ # am--include-marker
  518. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmltok.Plo@am__quote@ # am--include-marker
  519. $(am__depfiles_remade):
  520. @$(MKDIR_P) $(@D)
  521. @echo '# dummy' >$@-t && $(am__mv) $@-t $@
  522. am--depfiles: $(am__depfiles_remade)
  523. .c.o:
  524. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  525. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  526. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  527. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  528. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  529. .c.obj:
  530. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  531. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  532. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  533. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  534. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  535. .c.lo:
  536. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  537. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  538. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  539. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  540. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  541. mostlyclean-libtool:
  542. -rm -f *.lo
  543. clean-libtool:
  544. -rm -rf .libs _libs
  545. install-docDATA: $(doc_DATA)
  546. @$(NORMAL_INSTALL)
  547. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  548. if test -n "$$list"; then \
  549. echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
  550. $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
  551. fi; \
  552. for p in $$list; do \
  553. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  554. echo "$$d$$p"; \
  555. done | $(am__base_list) | \
  556. while read files; do \
  557. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
  558. $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
  559. done
  560. uninstall-docDATA:
  561. @$(NORMAL_UNINSTALL)
  562. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  563. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  564. dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
  565. install-includeHEADERS: $(include_HEADERS)
  566. @$(NORMAL_INSTALL)
  567. @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
  568. if test -n "$$list"; then \
  569. echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
  570. $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
  571. fi; \
  572. for p in $$list; do \
  573. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  574. echo "$$d$$p"; \
  575. done | $(am__base_list) | \
  576. while read files; do \
  577. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
  578. $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
  579. done
  580. uninstall-includeHEADERS:
  581. @$(NORMAL_UNINSTALL)
  582. @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
  583. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  584. dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
  585. ID: $(am__tagged_files)
  586. $(am__define_uniq_tagged_files); mkid -fID $$unique
  587. tags: tags-am
  588. TAGS: tags
  589. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  590. set x; \
  591. here=`pwd`; \
  592. $(am__define_uniq_tagged_files); \
  593. shift; \
  594. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  595. test -n "$$unique" || unique=$$empty_fix; \
  596. if test $$# -gt 0; then \
  597. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  598. "$$@" $$unique; \
  599. else \
  600. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  601. $$unique; \
  602. fi; \
  603. fi
  604. ctags: ctags-am
  605. CTAGS: ctags
  606. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  607. $(am__define_uniq_tagged_files); \
  608. test -z "$(CTAGS_ARGS)$$unique" \
  609. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  610. $$unique
  611. GTAGS:
  612. here=`$(am__cd) $(top_builddir) && pwd` \
  613. && $(am__cd) $(top_srcdir) \
  614. && gtags -i $(GTAGS_ARGS) "$$here"
  615. cscopelist: cscopelist-am
  616. cscopelist-am: $(am__tagged_files)
  617. list='$(am__tagged_files)'; \
  618. case "$(srcdir)" in \
  619. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  620. *) sdir=$(subdir)/$(srcdir) ;; \
  621. esac; \
  622. for i in $$list; do \
  623. if test -f "$$i"; then \
  624. echo "$(subdir)/$$i"; \
  625. else \
  626. echo "$$sdir/$$i"; \
  627. fi; \
  628. done >> $(top_builddir)/cscope.files
  629. distclean-tags:
  630. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  631. distdir: $(BUILT_SOURCES)
  632. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  633. distdir-am: $(DISTFILES)
  634. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  635. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  636. list='$(DISTFILES)'; \
  637. dist_files=`for file in $$list; do echo $$file; done | \
  638. sed -e "s|^$$srcdirstrip/||;t" \
  639. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  640. case $$dist_files in \
  641. */*) $(MKDIR_P) `echo "$$dist_files" | \
  642. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  643. sort -u` ;; \
  644. esac; \
  645. for file in $$dist_files; do \
  646. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  647. if test -d $$d/$$file; then \
  648. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  649. if test -d "$(distdir)/$$file"; then \
  650. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  651. fi; \
  652. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  653. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  654. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  655. fi; \
  656. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  657. else \
  658. test -f "$(distdir)/$$file" \
  659. || cp -p $$d/$$file "$(distdir)/$$file" \
  660. || exit 1; \
  661. fi; \
  662. done
  663. check-am: all-am
  664. check: check-am
  665. all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
  666. installdirs:
  667. for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(includedir)"; do \
  668. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  669. done
  670. install: install-am
  671. install-exec: install-exec-am
  672. install-data: install-data-am
  673. uninstall: uninstall-am
  674. install-am: all-am
  675. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  676. installcheck: installcheck-am
  677. install-strip:
  678. if test -z '$(STRIP)'; then \
  679. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  680. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  681. install; \
  682. else \
  683. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  684. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  685. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  686. fi
  687. mostlyclean-generic:
  688. clean-generic:
  689. distclean-generic:
  690. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  691. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  692. maintainer-clean-generic:
  693. @echo "This command is intended for maintainers to use"
  694. @echo "it deletes files that may require special tools to rebuild."
  695. clean: clean-am
  696. clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  697. clean-noinstLTLIBRARIES mostlyclean-am
  698. distclean: distclean-am
  699. -rm -f ./$(DEPDIR)/xmlparse.Plo
  700. -rm -f ./$(DEPDIR)/xmlrole.Plo
  701. -rm -f ./$(DEPDIR)/xmltok.Plo
  702. -rm -f Makefile
  703. distclean-am: clean-am distclean-compile distclean-generic \
  704. distclean-tags
  705. dvi: dvi-am
  706. dvi-am:
  707. html: html-am
  708. html-am:
  709. info: info-am
  710. info-am:
  711. install-data-am: install-docDATA install-includeHEADERS
  712. @$(NORMAL_INSTALL)
  713. $(MAKE) $(AM_MAKEFLAGS) install-data-hook
  714. install-dvi: install-dvi-am
  715. install-dvi-am:
  716. install-exec-am: install-libLTLIBRARIES
  717. install-html: install-html-am
  718. install-html-am:
  719. install-info: install-info-am
  720. install-info-am:
  721. install-man:
  722. install-pdf: install-pdf-am
  723. install-pdf-am:
  724. install-ps: install-ps-am
  725. install-ps-am:
  726. installcheck-am:
  727. maintainer-clean: maintainer-clean-am
  728. -rm -f ./$(DEPDIR)/xmlparse.Plo
  729. -rm -f ./$(DEPDIR)/xmlrole.Plo
  730. -rm -f ./$(DEPDIR)/xmltok.Plo
  731. -rm -f Makefile
  732. maintainer-clean-am: distclean-am maintainer-clean-generic
  733. mostlyclean: mostlyclean-am
  734. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  735. mostlyclean-libtool
  736. pdf: pdf-am
  737. pdf-am:
  738. ps: ps-am
  739. ps-am:
  740. uninstall-am: uninstall-docDATA uninstall-includeHEADERS \
  741. uninstall-libLTLIBRARIES uninstall-local
  742. .MAKE: install-am install-data-am install-strip
  743. .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
  744. clean-generic clean-libLTLIBRARIES clean-libtool \
  745. clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \
  746. distclean-compile distclean-generic distclean-libtool \
  747. distclean-tags distdir dvi dvi-am html html-am info info-am \
  748. install install-am install-data install-data-am \
  749. install-data-hook install-docDATA install-dvi install-dvi-am \
  750. install-exec install-exec-am install-html install-html-am \
  751. install-includeHEADERS install-info install-info-am \
  752. install-libLTLIBRARIES install-man install-pdf install-pdf-am \
  753. install-ps install-ps-am install-strip installcheck \
  754. installcheck-am installdirs maintainer-clean \
  755. maintainer-clean-generic mostlyclean mostlyclean-compile \
  756. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  757. tags tags-am uninstall uninstall-am uninstall-docDATA \
  758. uninstall-includeHEADERS uninstall-libLTLIBRARIES \
  759. uninstall-local
  760. .PRECIOUS: Makefile
  761. install-data-hook:
  762. cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
  763. uninstall-local:
  764. $(RM) "$(DESTDIR)$(docdir)/changelog"
  765. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  766. # Otherwise a system limit (for SysV at least) may be exceeded.
  767. .NOEXPORT: