Makefile.in 24 KB

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