Makefile.in 20 KB

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