Makefile.in 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. # Makefile.in generated by automake 1.15 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2014 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. # FLAC - Free Lossless Audio Codec
  13. # Copyright (C) 2001-2009 Josh Coalson
  14. # Copyright (C) 2011-2016 Xiph.Org Foundation
  15. #
  16. # This file is part the FLAC project. FLAC is comprised of several
  17. # components distributed under different licenses. The codec libraries
  18. # are distributed under Xiph.Org's BSD-like license (see the file
  19. # COPYING.Xiph in this distribution). All other programs, libraries, and
  20. # plugins are distributed under the GPL (see COPYING.GPL). The documentation
  21. # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
  22. # FLAC distribution contains at the top the terms under which it may be
  23. # distributed.
  24. #
  25. # Since this particular file is relevant to all components of FLAC,
  26. # it may be distributed under the Xiph.Org license, which is the least
  27. # restrictive of those mentioned above. See the file COPYING.Xiph in this
  28. # distribution.
  29. VPATH = @srcdir@
  30. am__is_gnu_make = { \
  31. if test -z '$(MAKELEVEL)'; then \
  32. false; \
  33. elif test -n '$(MAKE_HOST)'; then \
  34. true; \
  35. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  36. true; \
  37. else \
  38. false; \
  39. fi; \
  40. }
  41. am__make_running_with_option = \
  42. case $${target_option-} in \
  43. ?) ;; \
  44. *) echo "am__make_running_with_option: internal error: invalid" \
  45. "target option '$${target_option-}' specified" >&2; \
  46. exit 1;; \
  47. esac; \
  48. has_opt=no; \
  49. sane_makeflags=$$MAKEFLAGS; \
  50. if $(am__is_gnu_make); then \
  51. sane_makeflags=$$MFLAGS; \
  52. else \
  53. case $$MAKEFLAGS in \
  54. *\\[\ \ ]*) \
  55. bs=\\; \
  56. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  57. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  58. esac; \
  59. fi; \
  60. skip_next=no; \
  61. strip_trailopt () \
  62. { \
  63. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  64. }; \
  65. for flg in $$sane_makeflags; do \
  66. test $$skip_next = yes && { skip_next=no; continue; }; \
  67. case $$flg in \
  68. *=*|--*) continue;; \
  69. -*I) strip_trailopt 'I'; skip_next=yes;; \
  70. -*I?*) strip_trailopt 'I';; \
  71. -*O) strip_trailopt 'O'; skip_next=yes;; \
  72. -*O?*) strip_trailopt 'O';; \
  73. -*l) strip_trailopt 'l'; skip_next=yes;; \
  74. -*l?*) strip_trailopt 'l';; \
  75. -[dEDm]) skip_next=yes;; \
  76. -[JT]) skip_next=yes;; \
  77. esac; \
  78. case $$flg in \
  79. *$$target_option*) has_opt=yes; break;; \
  80. esac; \
  81. done; \
  82. test $$has_opt = yes
  83. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  84. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  85. pkgdatadir = $(datadir)/@PACKAGE@
  86. pkgincludedir = $(includedir)/@PACKAGE@
  87. pkglibdir = $(libdir)/@PACKAGE@
  88. pkglibexecdir = $(libexecdir)/@PACKAGE@
  89. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  90. install_sh_DATA = $(install_sh) -c -m 644
  91. install_sh_PROGRAM = $(install_sh) -c
  92. install_sh_SCRIPT = $(install_sh) -c
  93. INSTALL_HEADER = $(INSTALL_DATA)
  94. transform = $(program_transform_name)
  95. NORMAL_INSTALL = :
  96. PRE_INSTALL = :
  97. POST_INSTALL = :
  98. NORMAL_UNINSTALL = :
  99. PRE_UNINSTALL = :
  100. POST_UNINSTALL = :
  101. build_triplet = @build@
  102. host_triplet = @host@
  103. subdir = doc/html
  104. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  105. am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \
  106. $(top_srcdir)/m4/add_cxxflags.m4 $(top_srcdir)/m4/bswap.m4 \
  107. $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \
  108. $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \
  109. $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
  110. $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
  111. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  112. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  113. $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \
  114. $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \
  115. $(top_srcdir)/configure.ac
  116. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  117. $(ACLOCAL_M4)
  118. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  119. mkinstalldirs = $(install_sh) -d
  120. CONFIG_HEADER = $(top_builddir)/config.h
  121. CONFIG_CLEAN_FILES =
  122. CONFIG_CLEAN_VPATH_FILES =
  123. AM_V_P = $(am__v_P_@AM_V@)
  124. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  125. am__v_P_0 = false
  126. am__v_P_1 = :
  127. AM_V_GEN = $(am__v_GEN_@AM_V@)
  128. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  129. am__v_GEN_0 = @echo " GEN " $@;
  130. am__v_GEN_1 =
  131. AM_V_at = $(am__v_at_@AM_V@)
  132. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  133. am__v_at_0 = @
  134. am__v_at_1 =
  135. SOURCES =
  136. DIST_SOURCES =
  137. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  138. ctags-recursive dvi-recursive html-recursive info-recursive \
  139. install-data-recursive install-dvi-recursive \
  140. install-exec-recursive install-html-recursive \
  141. install-info-recursive install-pdf-recursive \
  142. install-ps-recursive install-recursive installcheck-recursive \
  143. installdirs-recursive pdf-recursive ps-recursive \
  144. tags-recursive uninstall-recursive
  145. am__can_run_installinfo = \
  146. case $$AM_UPDATE_INFO_DIR in \
  147. n|no|NO) false;; \
  148. *) (install-info --version) >/dev/null 2>&1;; \
  149. esac
  150. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  151. am__vpath_adj = case $$p in \
  152. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  153. *) f=$$p;; \
  154. esac;
  155. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  156. am__install_max = 40
  157. am__nobase_strip_setup = \
  158. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  159. am__nobase_strip = \
  160. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  161. am__nobase_list = $(am__nobase_strip_setup); \
  162. for p in $$list; do echo "$$p $$p"; done | \
  163. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  164. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  165. if (++n[$$2] == $(am__install_max)) \
  166. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  167. END { for (dir in files) print dir, files[dir] }'
  168. am__base_list = \
  169. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  170. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  171. am__uninstall_files_from_dir = { \
  172. test -z "$$files" \
  173. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  174. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  175. $(am__cd) "$$dir" && rm -f $$files; }; \
  176. }
  177. am__installdirs = "$(DESTDIR)$(docdir)"
  178. DATA = $(doc_DATA)
  179. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  180. distclean-recursive maintainer-clean-recursive
  181. am__recursive_targets = \
  182. $(RECURSIVE_TARGETS) \
  183. $(RECURSIVE_CLEAN_TARGETS) \
  184. $(am__extra_recursive_targets)
  185. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  186. distdir
  187. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  188. # Read a list of newline-separated strings from the standard input,
  189. # and print each of them once, without duplicates. Input order is
  190. # *not* preserved.
  191. am__uniquify_input = $(AWK) '\
  192. BEGIN { nonempty = 0; } \
  193. { items[$$0] = 1; nonempty = 1; } \
  194. END { if (nonempty) { for (i in items) print i; }; } \
  195. '
  196. # Make sure the list of sources is unique. This is necessary because,
  197. # e.g., the same source file might be shared among _SOURCES variables
  198. # for different programs/libraries.
  199. am__define_uniq_tagged_files = \
  200. list='$(am__tagged_files)'; \
  201. unique=`for i in $$list; do \
  202. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  203. done | $(am__uniquify_input)`
  204. ETAGS = etags
  205. CTAGS = ctags
  206. DIST_SUBDIRS = $(SUBDIRS)
  207. am__DIST_COMMON = $(srcdir)/Makefile.in
  208. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  209. am__relativize = \
  210. dir0=`pwd`; \
  211. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  212. sed_rest='s,^[^/]*/*,,'; \
  213. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  214. sed_butlast='s,/*[^/]*$$,,'; \
  215. while test -n "$$dir1"; do \
  216. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  217. if test "$$first" != "."; then \
  218. if test "$$first" = ".."; then \
  219. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  220. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  221. else \
  222. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  223. if test "$$first2" = "$$first"; then \
  224. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  225. else \
  226. dir2="../$$dir2"; \
  227. fi; \
  228. dir0="$$dir0"/"$$first"; \
  229. fi; \
  230. fi; \
  231. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  232. done; \
  233. reldir="$$dir2"
  234. ACLOCAL = @ACLOCAL@
  235. AMTAR = @AMTAR@
  236. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  237. AR = @AR@
  238. AS = @AS@
  239. AUTOCONF = @AUTOCONF@
  240. AUTOHEADER = @AUTOHEADER@
  241. AUTOMAKE = @AUTOMAKE@
  242. AWK = @AWK@
  243. CC = @CC@
  244. CCAS = @CCAS@
  245. CCASDEPMODE = @CCASDEPMODE@
  246. CCASFLAGS = @CCASFLAGS@
  247. CCDEPMODE = @CCDEPMODE@
  248. CFLAGS = @CFLAGS@
  249. CPP = @CPP@
  250. CPPFLAGS = @CPPFLAGS@
  251. CXX = @CXX@
  252. CXXCPP = @CXXCPP@
  253. CXXDEPMODE = @CXXDEPMODE@
  254. CXXFLAGS = @CXXFLAGS@
  255. CYGPATH_W = @CYGPATH_W@
  256. DEFS = @DEFS@
  257. DEPDIR = @DEPDIR@
  258. DLLTOOL = @DLLTOOL@
  259. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  260. DOXYGEN = @DOXYGEN@
  261. DSYMUTIL = @DSYMUTIL@
  262. DUMPBIN = @DUMPBIN@
  263. ECHO_C = @ECHO_C@
  264. ECHO_N = @ECHO_N@
  265. ECHO_T = @ECHO_T@
  266. EGREP = @EGREP@
  267. ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@
  268. EXEEXT = @EXEEXT@
  269. FGREP = @FGREP@
  270. FLAC__HAS_OGG = @FLAC__HAS_OGG@
  271. FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@
  272. FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@
  273. GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@
  274. GCC_MINOR_VERSION = @GCC_MINOR_VERSION@
  275. GCC_VERSION = @GCC_VERSION@
  276. GREP = @GREP@
  277. INSTALL = @INSTALL@
  278. INSTALL_DATA = @INSTALL_DATA@
  279. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  280. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  281. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  282. LD = @LD@
  283. LDFLAGS = @LDFLAGS@
  284. LIBICONV = @LIBICONV@
  285. LIBOBJS = @LIBOBJS@
  286. LIBS = @LIBS@
  287. LIBTOOL = @LIBTOOL@
  288. LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
  289. LIPO = @LIPO@
  290. LN_S = @LN_S@
  291. LTLIBICONV = @LTLIBICONV@
  292. LTLIBOBJS = @LTLIBOBJS@
  293. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  294. MAKEINFO = @MAKEINFO@
  295. MANIFEST_TOOL = @MANIFEST_TOOL@
  296. MKDIR_P = @MKDIR_P@
  297. NASM = @NASM@
  298. NM = @NM@
  299. NMEDIT = @NMEDIT@
  300. OBJDUMP = @OBJDUMP@
  301. OBJEXT = @OBJEXT@
  302. OBJ_FORMAT = @OBJ_FORMAT@
  303. OGG_CFLAGS = @OGG_CFLAGS@
  304. OGG_LIBS = @OGG_LIBS@
  305. OGG_PACKAGE = @OGG_PACKAGE@
  306. OTOOL = @OTOOL@
  307. OTOOL64 = @OTOOL64@
  308. PACKAGE = @PACKAGE@
  309. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  310. PACKAGE_NAME = @PACKAGE_NAME@
  311. PACKAGE_STRING = @PACKAGE_STRING@
  312. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  313. PACKAGE_URL = @PACKAGE_URL@
  314. PACKAGE_VERSION = @PACKAGE_VERSION@
  315. PATH_SEPARATOR = @PATH_SEPARATOR@
  316. RANLIB = @RANLIB@
  317. SED = @SED@
  318. SET_MAKE = @SET_MAKE@
  319. SHELL = @SHELL@
  320. STRIP = @STRIP@
  321. VERSION = @VERSION@
  322. XMMS_CFLAGS = @XMMS_CFLAGS@
  323. XMMS_CONFIG = @XMMS_CONFIG@
  324. XMMS_DATA_DIR = @XMMS_DATA_DIR@
  325. XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@
  326. XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@
  327. XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@
  328. XMMS_LIBS = @XMMS_LIBS@
  329. XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@
  330. XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@
  331. XMMS_VERSION = @XMMS_VERSION@
  332. XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@
  333. abs_builddir = @abs_builddir@
  334. abs_srcdir = @abs_srcdir@
  335. abs_top_builddir = @abs_top_builddir@
  336. abs_top_srcdir = @abs_top_srcdir@
  337. ac_ct_AR = @ac_ct_AR@
  338. ac_ct_CC = @ac_ct_CC@
  339. ac_ct_CXX = @ac_ct_CXX@
  340. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  341. am__include = @am__include@
  342. am__leading_dot = @am__leading_dot@
  343. am__quote = @am__quote@
  344. am__tar = @am__tar@
  345. am__untar = @am__untar@
  346. bindir = @bindir@
  347. build = @build@
  348. build_alias = @build_alias@
  349. build_cpu = @build_cpu@
  350. build_os = @build_os@
  351. build_vendor = @build_vendor@
  352. builddir = @builddir@
  353. datadir = @datadir@
  354. datarootdir = @datarootdir@
  355. docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
  356. dvidir = @dvidir@
  357. exec_prefix = @exec_prefix@
  358. host = @host@
  359. host_alias = @host_alias@
  360. host_cpu = @host_cpu@
  361. host_os = @host_os@
  362. host_vendor = @host_vendor@
  363. htmldir = @htmldir@
  364. includedir = @includedir@
  365. infodir = @infodir@
  366. install_sh = @install_sh@
  367. libdir = @libdir@
  368. libexecdir = @libexecdir@
  369. localedir = @localedir@
  370. localstatedir = @localstatedir@
  371. mandir = @mandir@
  372. mkdir_p = @mkdir_p@
  373. oldincludedir = @oldincludedir@
  374. pdfdir = @pdfdir@
  375. prefix = @prefix@
  376. program_transform_name = @program_transform_name@
  377. psdir = @psdir@
  378. runstatedir = @runstatedir@
  379. sbindir = @sbindir@
  380. sharedstatedir = @sharedstatedir@
  381. srcdir = @srcdir@
  382. sysconfdir = @sysconfdir@
  383. target_alias = @target_alias@
  384. top_build_prefix = @top_build_prefix@
  385. top_builddir = @top_builddir@
  386. top_srcdir = @top_srcdir@
  387. SUBDIRS = images
  388. doc_DATA = \
  389. changelog.html \
  390. developers.html \
  391. documentation.html \
  392. documentation_bugs.html \
  393. documentation_example_code.html \
  394. documentation_format_overview.html \
  395. documentation_tools.html \
  396. documentation_tools_flac.html \
  397. documentation_tools_metaflac.html \
  398. faq.html \
  399. favicon.ico \
  400. features.html \
  401. flac.css \
  402. format.html \
  403. id.html \
  404. index.html \
  405. license.html \
  406. ogg_mapping.html
  407. EXTRA_DIST = $(doc_DATA) api
  408. all: all-recursive
  409. .SUFFIXES:
  410. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  411. @for dep in $?; do \
  412. case '$(am__configure_deps)' in \
  413. *$$dep*) \
  414. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  415. && { if test -f $@; then exit 0; else break; fi; }; \
  416. exit 1;; \
  417. esac; \
  418. done; \
  419. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/html/Makefile'; \
  420. $(am__cd) $(top_srcdir) && \
  421. $(AUTOMAKE) --foreign doc/html/Makefile
  422. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  423. @case '$?' in \
  424. *config.status*) \
  425. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  426. *) \
  427. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  428. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  429. esac;
  430. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  431. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  432. $(top_srcdir)/configure: $(am__configure_deps)
  433. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  434. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  435. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  436. $(am__aclocal_m4_deps):
  437. mostlyclean-libtool:
  438. -rm -f *.lo
  439. clean-libtool:
  440. -rm -rf .libs _libs
  441. install-docDATA: $(doc_DATA)
  442. @$(NORMAL_INSTALL)
  443. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  444. if test -n "$$list"; then \
  445. echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
  446. $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
  447. fi; \
  448. for p in $$list; do \
  449. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  450. echo "$$d$$p"; \
  451. done | $(am__base_list) | \
  452. while read files; do \
  453. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
  454. $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
  455. done
  456. uninstall-docDATA:
  457. @$(NORMAL_UNINSTALL)
  458. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  459. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  460. dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
  461. # This directory's subdirectories are mostly independent; you can cd
  462. # into them and run 'make' without going through this Makefile.
  463. # To change the values of 'make' variables: instead of editing Makefiles,
  464. # (1) if the variable is set in 'config.status', edit 'config.status'
  465. # (which will cause the Makefiles to be regenerated when you run 'make');
  466. # (2) otherwise, pass the desired values on the 'make' command line.
  467. $(am__recursive_targets):
  468. @fail=; \
  469. if $(am__make_keepgoing); then \
  470. failcom='fail=yes'; \
  471. else \
  472. failcom='exit 1'; \
  473. fi; \
  474. dot_seen=no; \
  475. target=`echo $@ | sed s/-recursive//`; \
  476. case "$@" in \
  477. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  478. *) list='$(SUBDIRS)' ;; \
  479. esac; \
  480. for subdir in $$list; do \
  481. echo "Making $$target in $$subdir"; \
  482. if test "$$subdir" = "."; then \
  483. dot_seen=yes; \
  484. local_target="$$target-am"; \
  485. else \
  486. local_target="$$target"; \
  487. fi; \
  488. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  489. || eval $$failcom; \
  490. done; \
  491. if test "$$dot_seen" = "no"; then \
  492. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  493. fi; test -z "$$fail"
  494. ID: $(am__tagged_files)
  495. $(am__define_uniq_tagged_files); mkid -fID $$unique
  496. tags: tags-recursive
  497. TAGS: tags
  498. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  499. set x; \
  500. here=`pwd`; \
  501. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  502. include_option=--etags-include; \
  503. empty_fix=.; \
  504. else \
  505. include_option=--include; \
  506. empty_fix=; \
  507. fi; \
  508. list='$(SUBDIRS)'; for subdir in $$list; do \
  509. if test "$$subdir" = .; then :; else \
  510. test ! -f $$subdir/TAGS || \
  511. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  512. fi; \
  513. done; \
  514. $(am__define_uniq_tagged_files); \
  515. shift; \
  516. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  517. test -n "$$unique" || unique=$$empty_fix; \
  518. if test $$# -gt 0; then \
  519. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  520. "$$@" $$unique; \
  521. else \
  522. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  523. $$unique; \
  524. fi; \
  525. fi
  526. ctags: ctags-recursive
  527. CTAGS: ctags
  528. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  529. $(am__define_uniq_tagged_files); \
  530. test -z "$(CTAGS_ARGS)$$unique" \
  531. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  532. $$unique
  533. GTAGS:
  534. here=`$(am__cd) $(top_builddir) && pwd` \
  535. && $(am__cd) $(top_srcdir) \
  536. && gtags -i $(GTAGS_ARGS) "$$here"
  537. cscopelist: cscopelist-recursive
  538. cscopelist-am: $(am__tagged_files)
  539. list='$(am__tagged_files)'; \
  540. case "$(srcdir)" in \
  541. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  542. *) sdir=$(subdir)/$(srcdir) ;; \
  543. esac; \
  544. for i in $$list; do \
  545. if test -f "$$i"; then \
  546. echo "$(subdir)/$$i"; \
  547. else \
  548. echo "$$sdir/$$i"; \
  549. fi; \
  550. done >> $(top_builddir)/cscope.files
  551. distclean-tags:
  552. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  553. distdir: $(DISTFILES)
  554. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  555. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  556. list='$(DISTFILES)'; \
  557. dist_files=`for file in $$list; do echo $$file; done | \
  558. sed -e "s|^$$srcdirstrip/||;t" \
  559. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  560. case $$dist_files in \
  561. */*) $(MKDIR_P) `echo "$$dist_files" | \
  562. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  563. sort -u` ;; \
  564. esac; \
  565. for file in $$dist_files; do \
  566. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  567. if test -d $$d/$$file; then \
  568. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  569. if test -d "$(distdir)/$$file"; then \
  570. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  571. fi; \
  572. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  573. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  574. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  575. fi; \
  576. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  577. else \
  578. test -f "$(distdir)/$$file" \
  579. || cp -p $$d/$$file "$(distdir)/$$file" \
  580. || exit 1; \
  581. fi; \
  582. done
  583. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  584. if test "$$subdir" = .; then :; else \
  585. $(am__make_dryrun) \
  586. || test -d "$(distdir)/$$subdir" \
  587. || $(MKDIR_P) "$(distdir)/$$subdir" \
  588. || exit 1; \
  589. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  590. $(am__relativize); \
  591. new_distdir=$$reldir; \
  592. dir1=$$subdir; dir2="$(top_distdir)"; \
  593. $(am__relativize); \
  594. new_top_distdir=$$reldir; \
  595. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  596. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  597. ($(am__cd) $$subdir && \
  598. $(MAKE) $(AM_MAKEFLAGS) \
  599. top_distdir="$$new_top_distdir" \
  600. distdir="$$new_distdir" \
  601. am__remove_distdir=: \
  602. am__skip_length_check=: \
  603. am__skip_mode_fix=: \
  604. distdir) \
  605. || exit 1; \
  606. fi; \
  607. done
  608. check-am: all-am
  609. check: check-recursive
  610. all-am: Makefile $(DATA)
  611. installdirs: installdirs-recursive
  612. installdirs-am:
  613. for dir in "$(DESTDIR)$(docdir)"; do \
  614. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  615. done
  616. install: install-recursive
  617. install-exec: install-exec-recursive
  618. install-data: install-data-recursive
  619. uninstall: uninstall-recursive
  620. install-am: all-am
  621. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  622. installcheck: installcheck-recursive
  623. install-strip:
  624. if test -z '$(STRIP)'; then \
  625. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  626. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  627. install; \
  628. else \
  629. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  630. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  631. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  632. fi
  633. mostlyclean-generic:
  634. clean-generic:
  635. distclean-generic:
  636. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  637. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  638. maintainer-clean-generic:
  639. @echo "This command is intended for maintainers to use"
  640. @echo "it deletes files that may require special tools to rebuild."
  641. @FLaC__HAS_DOXYGEN_FALSE@distclean-local:
  642. @FLaC__HAS_DOXYGEN_FALSE@uninstall-local:
  643. @FLaC__HAS_DOXYGEN_FALSE@install-data-local:
  644. clean: clean-recursive
  645. clean-am: clean-generic clean-libtool mostlyclean-am
  646. distclean: distclean-recursive
  647. -rm -f Makefile
  648. distclean-am: clean-am distclean-generic distclean-local \
  649. distclean-tags
  650. dvi: dvi-recursive
  651. dvi-am:
  652. html: html-recursive
  653. html-am:
  654. info: info-recursive
  655. info-am:
  656. install-data-am: install-data-local install-docDATA
  657. install-dvi: install-dvi-recursive
  658. install-dvi-am:
  659. install-exec-am:
  660. install-html: install-html-recursive
  661. install-html-am:
  662. install-info: install-info-recursive
  663. install-info-am:
  664. install-man:
  665. install-pdf: install-pdf-recursive
  666. install-pdf-am:
  667. install-ps: install-ps-recursive
  668. install-ps-am:
  669. installcheck-am:
  670. maintainer-clean: maintainer-clean-recursive
  671. -rm -f Makefile
  672. maintainer-clean-am: distclean-am maintainer-clean-generic
  673. mostlyclean: mostlyclean-recursive
  674. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  675. pdf: pdf-recursive
  676. pdf-am:
  677. ps: ps-recursive
  678. ps-am:
  679. uninstall-am: uninstall-docDATA uninstall-local
  680. .MAKE: $(am__recursive_targets) install-am install-strip
  681. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
  682. check-am clean clean-generic clean-libtool cscopelist-am ctags \
  683. ctags-am distclean distclean-generic distclean-libtool \
  684. distclean-local distclean-tags distdir dvi dvi-am html html-am \
  685. info info-am install install-am install-data install-data-am \
  686. install-data-local install-docDATA install-dvi install-dvi-am \
  687. install-exec install-exec-am install-html install-html-am \
  688. install-info install-info-am install-man install-pdf \
  689. install-pdf-am install-ps install-ps-am install-strip \
  690. installcheck installcheck-am installdirs installdirs-am \
  691. maintainer-clean maintainer-clean-generic mostlyclean \
  692. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  693. tags tags-am uninstall uninstall-am uninstall-docDATA \
  694. uninstall-local
  695. .PRECIOUS: Makefile
  696. # The install targets don't copy whole directories so we have to
  697. # handle 'api/' specially:
  698. @FLaC__HAS_DOXYGEN_TRUE@install-data-local:
  699. @FLaC__HAS_DOXYGEN_TRUE@ $(mkinstalldirs) $(DESTDIR)$(docdir)/api
  700. @FLaC__HAS_DOXYGEN_TRUE@ (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
  701. @FLaC__HAS_DOXYGEN_TRUE@uninstall-local:
  702. @FLaC__HAS_DOXYGEN_TRUE@ rm -rf $(DESTDIR)$(docdir)/api
  703. @FLaC__HAS_DOXYGEN_TRUE@distclean-local:
  704. @FLaC__HAS_DOXYGEN_TRUE@ -rm -rf api
  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: