Makefile.in 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  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. # libFLAC - Free Lossless Audio Codec library
  13. # Copyright (C) 2000-2009 Josh Coalson
  14. # Copyright (C) 2011-2016 Xiph.Org Foundation
  15. #
  16. # Redistribution and use in source and binary forms, with or without
  17. # modification, are permitted provided that the following conditions
  18. # are met:
  19. #
  20. # - Redistributions of source code must retain the above copyright
  21. # notice, this list of conditions and the following disclaimer.
  22. #
  23. # - Redistributions in binary form must reproduce the above copyright
  24. # notice, this list of conditions and the following disclaimer in the
  25. # documentation and/or other materials provided with the distribution.
  26. #
  27. # - Neither the name of the Xiph.org Foundation nor the names of its
  28. # contributors may be used to endorse or promote products derived from
  29. # this software without specific prior written permission.
  30. #
  31. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  32. # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  33. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  34. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
  35. # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  36. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  39. # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  40. # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  41. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. VPATH = @srcdir@
  43. am__is_gnu_make = { \
  44. if test -z '$(MAKELEVEL)'; then \
  45. false; \
  46. elif test -n '$(MAKE_HOST)'; then \
  47. true; \
  48. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  49. true; \
  50. else \
  51. false; \
  52. fi; \
  53. }
  54. am__make_running_with_option = \
  55. case $${target_option-} in \
  56. ?) ;; \
  57. *) echo "am__make_running_with_option: internal error: invalid" \
  58. "target option '$${target_option-}' specified" >&2; \
  59. exit 1;; \
  60. esac; \
  61. has_opt=no; \
  62. sane_makeflags=$$MAKEFLAGS; \
  63. if $(am__is_gnu_make); then \
  64. sane_makeflags=$$MFLAGS; \
  65. else \
  66. case $$MAKEFLAGS in \
  67. *\\[\ \ ]*) \
  68. bs=\\; \
  69. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  70. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  71. esac; \
  72. fi; \
  73. skip_next=no; \
  74. strip_trailopt () \
  75. { \
  76. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  77. }; \
  78. for flg in $$sane_makeflags; do \
  79. test $$skip_next = yes && { skip_next=no; continue; }; \
  80. case $$flg in \
  81. *=*|--*) continue;; \
  82. -*I) strip_trailopt 'I'; skip_next=yes;; \
  83. -*I?*) strip_trailopt 'I';; \
  84. -*O) strip_trailopt 'O'; skip_next=yes;; \
  85. -*O?*) strip_trailopt 'O';; \
  86. -*l) strip_trailopt 'l'; skip_next=yes;; \
  87. -*l?*) strip_trailopt 'l';; \
  88. -[dEDm]) skip_next=yes;; \
  89. -[JT]) skip_next=yes;; \
  90. esac; \
  91. case $$flg in \
  92. *$$target_option*) has_opt=yes; break;; \
  93. esac; \
  94. done; \
  95. test $$has_opt = yes
  96. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  97. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  98. pkgdatadir = $(datadir)/@PACKAGE@
  99. pkgincludedir = $(includedir)/@PACKAGE@
  100. pkglibdir = $(libdir)/@PACKAGE@
  101. pkglibexecdir = $(libexecdir)/@PACKAGE@
  102. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  103. install_sh_DATA = $(install_sh) -c -m 644
  104. install_sh_PROGRAM = $(install_sh) -c
  105. install_sh_SCRIPT = $(install_sh) -c
  106. INSTALL_HEADER = $(INSTALL_DATA)
  107. transform = $(program_transform_name)
  108. NORMAL_INSTALL = :
  109. PRE_INSTALL = :
  110. POST_INSTALL = :
  111. NORMAL_UNINSTALL = :
  112. PRE_UNINSTALL = :
  113. POST_UNINSTALL = :
  114. build_triplet = @build@
  115. host_triplet = @host@
  116. subdir = include/FLAC
  117. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  118. am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \
  119. $(top_srcdir)/m4/add_cxxflags.m4 $(top_srcdir)/m4/bswap.m4 \
  120. $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \
  121. $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \
  122. $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
  123. $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
  124. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  125. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  126. $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \
  127. $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \
  128. $(top_srcdir)/configure.ac
  129. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  130. $(ACLOCAL_M4)
  131. DIST_COMMON = $(srcdir)/Makefile.am $(flaccinclude_HEADERS) \
  132. $(am__DIST_COMMON)
  133. mkinstalldirs = $(install_sh) -d
  134. CONFIG_HEADER = $(top_builddir)/config.h
  135. CONFIG_CLEAN_FILES =
  136. CONFIG_CLEAN_VPATH_FILES =
  137. AM_V_P = $(am__v_P_@AM_V@)
  138. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  139. am__v_P_0 = false
  140. am__v_P_1 = :
  141. AM_V_GEN = $(am__v_GEN_@AM_V@)
  142. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  143. am__v_GEN_0 = @echo " GEN " $@;
  144. am__v_GEN_1 =
  145. AM_V_at = $(am__v_at_@AM_V@)
  146. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  147. am__v_at_0 = @
  148. am__v_at_1 =
  149. SOURCES =
  150. DIST_SOURCES =
  151. am__can_run_installinfo = \
  152. case $$AM_UPDATE_INFO_DIR in \
  153. n|no|NO) false;; \
  154. *) (install-info --version) >/dev/null 2>&1;; \
  155. esac
  156. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  157. am__vpath_adj = case $$p in \
  158. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  159. *) f=$$p;; \
  160. esac;
  161. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  162. am__install_max = 40
  163. am__nobase_strip_setup = \
  164. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  165. am__nobase_strip = \
  166. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  167. am__nobase_list = $(am__nobase_strip_setup); \
  168. for p in $$list; do echo "$$p $$p"; done | \
  169. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  170. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  171. if (++n[$$2] == $(am__install_max)) \
  172. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  173. END { for (dir in files) print dir, files[dir] }'
  174. am__base_list = \
  175. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  176. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  177. am__uninstall_files_from_dir = { \
  178. test -z "$$files" \
  179. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  180. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  181. $(am__cd) "$$dir" && rm -f $$files; }; \
  182. }
  183. am__installdirs = "$(DESTDIR)$(flaccincludedir)"
  184. HEADERS = $(flaccinclude_HEADERS)
  185. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  186. # Read a list of newline-separated strings from the standard input,
  187. # and print each of them once, without duplicates. Input order is
  188. # *not* preserved.
  189. am__uniquify_input = $(AWK) '\
  190. BEGIN { nonempty = 0; } \
  191. { items[$$0] = 1; nonempty = 1; } \
  192. END { if (nonempty) { for (i in items) print i; }; } \
  193. '
  194. # Make sure the list of sources is unique. This is necessary because,
  195. # e.g., the same source file might be shared among _SOURCES variables
  196. # for different programs/libraries.
  197. am__define_uniq_tagged_files = \
  198. list='$(am__tagged_files)'; \
  199. unique=`for i in $$list; do \
  200. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  201. done | $(am__uniquify_input)`
  202. ETAGS = etags
  203. CTAGS = ctags
  204. am__DIST_COMMON = $(srcdir)/Makefile.in
  205. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  206. ACLOCAL = @ACLOCAL@
  207. AMTAR = @AMTAR@
  208. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  209. AR = @AR@
  210. AS = @AS@
  211. AUTOCONF = @AUTOCONF@
  212. AUTOHEADER = @AUTOHEADER@
  213. AUTOMAKE = @AUTOMAKE@
  214. AWK = @AWK@
  215. CC = @CC@
  216. CCAS = @CCAS@
  217. CCASDEPMODE = @CCASDEPMODE@
  218. CCASFLAGS = @CCASFLAGS@
  219. CCDEPMODE = @CCDEPMODE@
  220. CFLAGS = @CFLAGS@
  221. CPP = @CPP@
  222. CPPFLAGS = @CPPFLAGS@
  223. CXX = @CXX@
  224. CXXCPP = @CXXCPP@
  225. CXXDEPMODE = @CXXDEPMODE@
  226. CXXFLAGS = @CXXFLAGS@
  227. CYGPATH_W = @CYGPATH_W@
  228. DEFS = @DEFS@
  229. DEPDIR = @DEPDIR@
  230. DLLTOOL = @DLLTOOL@
  231. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  232. DOXYGEN = @DOXYGEN@
  233. DSYMUTIL = @DSYMUTIL@
  234. DUMPBIN = @DUMPBIN@
  235. ECHO_C = @ECHO_C@
  236. ECHO_N = @ECHO_N@
  237. ECHO_T = @ECHO_T@
  238. EGREP = @EGREP@
  239. ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@
  240. EXEEXT = @EXEEXT@
  241. FGREP = @FGREP@
  242. FLAC__HAS_OGG = @FLAC__HAS_OGG@
  243. FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@
  244. FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@
  245. GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@
  246. GCC_MINOR_VERSION = @GCC_MINOR_VERSION@
  247. GCC_VERSION = @GCC_VERSION@
  248. GREP = @GREP@
  249. INSTALL = @INSTALL@
  250. INSTALL_DATA = @INSTALL_DATA@
  251. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  252. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  253. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  254. LD = @LD@
  255. LDFLAGS = @LDFLAGS@
  256. LIBICONV = @LIBICONV@
  257. LIBOBJS = @LIBOBJS@
  258. LIBS = @LIBS@
  259. LIBTOOL = @LIBTOOL@
  260. LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
  261. LIPO = @LIPO@
  262. LN_S = @LN_S@
  263. LTLIBICONV = @LTLIBICONV@
  264. LTLIBOBJS = @LTLIBOBJS@
  265. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  266. MAKEINFO = @MAKEINFO@
  267. MANIFEST_TOOL = @MANIFEST_TOOL@
  268. MKDIR_P = @MKDIR_P@
  269. NASM = @NASM@
  270. NM = @NM@
  271. NMEDIT = @NMEDIT@
  272. OBJDUMP = @OBJDUMP@
  273. OBJEXT = @OBJEXT@
  274. OBJ_FORMAT = @OBJ_FORMAT@
  275. OGG_CFLAGS = @OGG_CFLAGS@
  276. OGG_LIBS = @OGG_LIBS@
  277. OGG_PACKAGE = @OGG_PACKAGE@
  278. OTOOL = @OTOOL@
  279. OTOOL64 = @OTOOL64@
  280. PACKAGE = @PACKAGE@
  281. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  282. PACKAGE_NAME = @PACKAGE_NAME@
  283. PACKAGE_STRING = @PACKAGE_STRING@
  284. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  285. PACKAGE_URL = @PACKAGE_URL@
  286. PACKAGE_VERSION = @PACKAGE_VERSION@
  287. PATH_SEPARATOR = @PATH_SEPARATOR@
  288. RANLIB = @RANLIB@
  289. SED = @SED@
  290. SET_MAKE = @SET_MAKE@
  291. SHELL = @SHELL@
  292. STRIP = @STRIP@
  293. VERSION = @VERSION@
  294. XMMS_CFLAGS = @XMMS_CFLAGS@
  295. XMMS_CONFIG = @XMMS_CONFIG@
  296. XMMS_DATA_DIR = @XMMS_DATA_DIR@
  297. XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@
  298. XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@
  299. XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@
  300. XMMS_LIBS = @XMMS_LIBS@
  301. XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@
  302. XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@
  303. XMMS_VERSION = @XMMS_VERSION@
  304. XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@
  305. abs_builddir = @abs_builddir@
  306. abs_srcdir = @abs_srcdir@
  307. abs_top_builddir = @abs_top_builddir@
  308. abs_top_srcdir = @abs_top_srcdir@
  309. ac_ct_AR = @ac_ct_AR@
  310. ac_ct_CC = @ac_ct_CC@
  311. ac_ct_CXX = @ac_ct_CXX@
  312. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  313. am__include = @am__include@
  314. am__leading_dot = @am__leading_dot@
  315. am__quote = @am__quote@
  316. am__tar = @am__tar@
  317. am__untar = @am__untar@
  318. bindir = @bindir@
  319. build = @build@
  320. build_alias = @build_alias@
  321. build_cpu = @build_cpu@
  322. build_os = @build_os@
  323. build_vendor = @build_vendor@
  324. builddir = @builddir@
  325. datadir = @datadir@
  326. datarootdir = @datarootdir@
  327. docdir = @docdir@
  328. dvidir = @dvidir@
  329. exec_prefix = @exec_prefix@
  330. host = @host@
  331. host_alias = @host_alias@
  332. host_cpu = @host_cpu@
  333. host_os = @host_os@
  334. host_vendor = @host_vendor@
  335. htmldir = @htmldir@
  336. includedir = @includedir@
  337. infodir = @infodir@
  338. install_sh = @install_sh@
  339. libdir = @libdir@
  340. libexecdir = @libexecdir@
  341. localedir = @localedir@
  342. localstatedir = @localstatedir@
  343. mandir = @mandir@
  344. mkdir_p = @mkdir_p@
  345. oldincludedir = @oldincludedir@
  346. pdfdir = @pdfdir@
  347. prefix = @prefix@
  348. program_transform_name = @program_transform_name@
  349. psdir = @psdir@
  350. runstatedir = @runstatedir@
  351. sbindir = @sbindir@
  352. sharedstatedir = @sharedstatedir@
  353. srcdir = @srcdir@
  354. sysconfdir = @sysconfdir@
  355. target_alias = @target_alias@
  356. top_build_prefix = @top_build_prefix@
  357. top_builddir = @top_builddir@
  358. top_srcdir = @top_srcdir@
  359. flaccincludedir = $(includedir)/FLAC
  360. flaccinclude_HEADERS = \
  361. all.h \
  362. assert.h \
  363. callback.h \
  364. export.h \
  365. format.h \
  366. metadata.h \
  367. ordinals.h \
  368. stream_decoder.h \
  369. stream_encoder.h
  370. all: all-am
  371. .SUFFIXES:
  372. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  373. @for dep in $?; do \
  374. case '$(am__configure_deps)' in \
  375. *$$dep*) \
  376. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  377. && { if test -f $@; then exit 0; else break; fi; }; \
  378. exit 1;; \
  379. esac; \
  380. done; \
  381. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/FLAC/Makefile'; \
  382. $(am__cd) $(top_srcdir) && \
  383. $(AUTOMAKE) --foreign include/FLAC/Makefile
  384. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  385. @case '$?' in \
  386. *config.status*) \
  387. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  388. *) \
  389. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  390. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  391. esac;
  392. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  393. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  394. $(top_srcdir)/configure: $(am__configure_deps)
  395. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  396. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  397. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  398. $(am__aclocal_m4_deps):
  399. mostlyclean-libtool:
  400. -rm -f *.lo
  401. clean-libtool:
  402. -rm -rf .libs _libs
  403. install-flaccincludeHEADERS: $(flaccinclude_HEADERS)
  404. @$(NORMAL_INSTALL)
  405. @list='$(flaccinclude_HEADERS)'; test -n "$(flaccincludedir)" || list=; \
  406. if test -n "$$list"; then \
  407. echo " $(MKDIR_P) '$(DESTDIR)$(flaccincludedir)'"; \
  408. $(MKDIR_P) "$(DESTDIR)$(flaccincludedir)" || exit 1; \
  409. fi; \
  410. for p in $$list; do \
  411. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  412. echo "$$d$$p"; \
  413. done | $(am__base_list) | \
  414. while read files; do \
  415. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(flaccincludedir)'"; \
  416. $(INSTALL_HEADER) $$files "$(DESTDIR)$(flaccincludedir)" || exit $$?; \
  417. done
  418. uninstall-flaccincludeHEADERS:
  419. @$(NORMAL_UNINSTALL)
  420. @list='$(flaccinclude_HEADERS)'; test -n "$(flaccincludedir)" || list=; \
  421. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  422. dir='$(DESTDIR)$(flaccincludedir)'; $(am__uninstall_files_from_dir)
  423. ID: $(am__tagged_files)
  424. $(am__define_uniq_tagged_files); mkid -fID $$unique
  425. tags: tags-am
  426. TAGS: tags
  427. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  428. set x; \
  429. here=`pwd`; \
  430. $(am__define_uniq_tagged_files); \
  431. shift; \
  432. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  433. test -n "$$unique" || unique=$$empty_fix; \
  434. if test $$# -gt 0; then \
  435. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  436. "$$@" $$unique; \
  437. else \
  438. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  439. $$unique; \
  440. fi; \
  441. fi
  442. ctags: ctags-am
  443. CTAGS: ctags
  444. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  445. $(am__define_uniq_tagged_files); \
  446. test -z "$(CTAGS_ARGS)$$unique" \
  447. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  448. $$unique
  449. GTAGS:
  450. here=`$(am__cd) $(top_builddir) && pwd` \
  451. && $(am__cd) $(top_srcdir) \
  452. && gtags -i $(GTAGS_ARGS) "$$here"
  453. cscopelist: cscopelist-am
  454. cscopelist-am: $(am__tagged_files)
  455. list='$(am__tagged_files)'; \
  456. case "$(srcdir)" in \
  457. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  458. *) sdir=$(subdir)/$(srcdir) ;; \
  459. esac; \
  460. for i in $$list; do \
  461. if test -f "$$i"; then \
  462. echo "$(subdir)/$$i"; \
  463. else \
  464. echo "$$sdir/$$i"; \
  465. fi; \
  466. done >> $(top_builddir)/cscope.files
  467. distclean-tags:
  468. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  469. distdir: $(DISTFILES)
  470. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  471. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  472. list='$(DISTFILES)'; \
  473. dist_files=`for file in $$list; do echo $$file; done | \
  474. sed -e "s|^$$srcdirstrip/||;t" \
  475. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  476. case $$dist_files in \
  477. */*) $(MKDIR_P) `echo "$$dist_files" | \
  478. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  479. sort -u` ;; \
  480. esac; \
  481. for file in $$dist_files; do \
  482. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  483. if test -d $$d/$$file; then \
  484. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  485. if test -d "$(distdir)/$$file"; then \
  486. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  487. fi; \
  488. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  489. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  490. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  491. fi; \
  492. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  493. else \
  494. test -f "$(distdir)/$$file" \
  495. || cp -p $$d/$$file "$(distdir)/$$file" \
  496. || exit 1; \
  497. fi; \
  498. done
  499. check-am: all-am
  500. check: check-am
  501. all-am: Makefile $(HEADERS)
  502. installdirs:
  503. for dir in "$(DESTDIR)$(flaccincludedir)"; do \
  504. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  505. done
  506. install: install-am
  507. install-exec: install-exec-am
  508. install-data: install-data-am
  509. uninstall: uninstall-am
  510. install-am: all-am
  511. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  512. installcheck: installcheck-am
  513. install-strip:
  514. if test -z '$(STRIP)'; then \
  515. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  516. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  517. install; \
  518. else \
  519. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  520. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  521. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  522. fi
  523. mostlyclean-generic:
  524. clean-generic:
  525. distclean-generic:
  526. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  527. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  528. maintainer-clean-generic:
  529. @echo "This command is intended for maintainers to use"
  530. @echo "it deletes files that may require special tools to rebuild."
  531. clean: clean-am
  532. clean-am: clean-generic clean-libtool mostlyclean-am
  533. distclean: distclean-am
  534. -rm -f Makefile
  535. distclean-am: clean-am distclean-generic distclean-tags
  536. dvi: dvi-am
  537. dvi-am:
  538. html: html-am
  539. html-am:
  540. info: info-am
  541. info-am:
  542. install-data-am: install-flaccincludeHEADERS
  543. install-dvi: install-dvi-am
  544. install-dvi-am:
  545. install-exec-am:
  546. install-html: install-html-am
  547. install-html-am:
  548. install-info: install-info-am
  549. install-info-am:
  550. install-man:
  551. install-pdf: install-pdf-am
  552. install-pdf-am:
  553. install-ps: install-ps-am
  554. install-ps-am:
  555. installcheck-am:
  556. maintainer-clean: maintainer-clean-am
  557. -rm -f Makefile
  558. maintainer-clean-am: distclean-am maintainer-clean-generic
  559. mostlyclean: mostlyclean-am
  560. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  561. pdf: pdf-am
  562. pdf-am:
  563. ps: ps-am
  564. ps-am:
  565. uninstall-am: uninstall-flaccincludeHEADERS
  566. .MAKE: install-am install-strip
  567. .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
  568. clean-libtool cscopelist-am ctags ctags-am distclean \
  569. distclean-generic distclean-libtool distclean-tags distdir dvi \
  570. dvi-am html html-am info info-am install install-am \
  571. install-data install-data-am install-dvi install-dvi-am \
  572. install-exec install-exec-am install-flaccincludeHEADERS \
  573. install-html install-html-am install-info install-info-am \
  574. install-man install-pdf install-pdf-am install-ps \
  575. install-ps-am install-strip installcheck installcheck-am \
  576. installdirs maintainer-clean maintainer-clean-generic \
  577. mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
  578. ps ps-am tags tags-am uninstall uninstall-am \
  579. uninstall-flaccincludeHEADERS
  580. .PRECIOUS: Makefile
  581. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  582. # Otherwise a system limit (for SysV at least) may be exceeded.
  583. .NOEXPORT: