2
0

Makefile.in 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  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 - Command-line FLAC encoder/decoder
  13. # Copyright (C) 2000-2009 Josh Coalson
  14. # Copyright (C) 2011-2016 Xiph.Org Foundation
  15. #
  16. # This program is free software; you can redistribute it and/or
  17. # modify it under the terms of the GNU General Public License
  18. # as published by the Free Software Foundation; either version 2
  19. # of the License, or (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU General Public License along
  27. # with this program; if not, write to the Free Software Foundation, Inc.,
  28. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  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 = man
  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. am__can_run_installinfo = \
  138. case $$AM_UPDATE_INFO_DIR in \
  139. n|no|NO) false;; \
  140. *) (install-info --version) >/dev/null 2>&1;; \
  141. esac
  142. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  143. am__vpath_adj = case $$p in \
  144. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  145. *) f=$$p;; \
  146. esac;
  147. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  148. am__install_max = 40
  149. am__nobase_strip_setup = \
  150. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  151. am__nobase_strip = \
  152. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  153. am__nobase_list = $(am__nobase_strip_setup); \
  154. for p in $$list; do echo "$$p $$p"; done | \
  155. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  156. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  157. if (++n[$$2] == $(am__install_max)) \
  158. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  159. END { for (dir in files) print dir, files[dir] }'
  160. am__base_list = \
  161. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  162. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  163. am__uninstall_files_from_dir = { \
  164. test -z "$$files" \
  165. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  166. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  167. $(am__cd) "$$dir" && rm -f $$files; }; \
  168. }
  169. man1dir = $(mandir)/man1
  170. am__installdirs = "$(DESTDIR)$(man1dir)"
  171. NROFF = nroff
  172. MANS = $(man_MANS)
  173. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  174. am__DIST_COMMON = $(srcdir)/Makefile.in
  175. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  176. ACLOCAL = @ACLOCAL@
  177. AMTAR = @AMTAR@
  178. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  179. AR = @AR@
  180. AS = @AS@
  181. AUTOCONF = @AUTOCONF@
  182. AUTOHEADER = @AUTOHEADER@
  183. AUTOMAKE = @AUTOMAKE@
  184. AWK = @AWK@
  185. CC = @CC@
  186. CCAS = @CCAS@
  187. CCASDEPMODE = @CCASDEPMODE@
  188. CCASFLAGS = @CCASFLAGS@
  189. CCDEPMODE = @CCDEPMODE@
  190. CFLAGS = @CFLAGS@
  191. CPP = @CPP@
  192. CPPFLAGS = @CPPFLAGS@
  193. CXX = @CXX@
  194. CXXCPP = @CXXCPP@
  195. CXXDEPMODE = @CXXDEPMODE@
  196. CXXFLAGS = @CXXFLAGS@
  197. CYGPATH_W = @CYGPATH_W@
  198. DEFS = @DEFS@
  199. DEPDIR = @DEPDIR@
  200. DLLTOOL = @DLLTOOL@
  201. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  202. DOXYGEN = @DOXYGEN@
  203. DSYMUTIL = @DSYMUTIL@
  204. DUMPBIN = @DUMPBIN@
  205. ECHO_C = @ECHO_C@
  206. ECHO_N = @ECHO_N@
  207. ECHO_T = @ECHO_T@
  208. EGREP = @EGREP@
  209. ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@
  210. EXEEXT = @EXEEXT@
  211. FGREP = @FGREP@
  212. FLAC__HAS_OGG = @FLAC__HAS_OGG@
  213. FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@
  214. FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@
  215. GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@
  216. GCC_MINOR_VERSION = @GCC_MINOR_VERSION@
  217. GCC_VERSION = @GCC_VERSION@
  218. GREP = @GREP@
  219. INSTALL = @INSTALL@
  220. INSTALL_DATA = @INSTALL_DATA@
  221. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  222. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  223. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  224. LD = @LD@
  225. LDFLAGS = @LDFLAGS@
  226. LIBICONV = @LIBICONV@
  227. LIBOBJS = @LIBOBJS@
  228. LIBS = @LIBS@
  229. LIBTOOL = @LIBTOOL@
  230. LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
  231. LIPO = @LIPO@
  232. LN_S = @LN_S@
  233. LTLIBICONV = @LTLIBICONV@
  234. LTLIBOBJS = @LTLIBOBJS@
  235. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  236. MAKEINFO = @MAKEINFO@
  237. MANIFEST_TOOL = @MANIFEST_TOOL@
  238. MKDIR_P = @MKDIR_P@
  239. NASM = @NASM@
  240. NM = @NM@
  241. NMEDIT = @NMEDIT@
  242. OBJDUMP = @OBJDUMP@
  243. OBJEXT = @OBJEXT@
  244. OBJ_FORMAT = @OBJ_FORMAT@
  245. OGG_CFLAGS = @OGG_CFLAGS@
  246. OGG_LIBS = @OGG_LIBS@
  247. OGG_PACKAGE = @OGG_PACKAGE@
  248. OTOOL = @OTOOL@
  249. OTOOL64 = @OTOOL64@
  250. PACKAGE = @PACKAGE@
  251. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  252. PACKAGE_NAME = @PACKAGE_NAME@
  253. PACKAGE_STRING = @PACKAGE_STRING@
  254. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  255. PACKAGE_URL = @PACKAGE_URL@
  256. PACKAGE_VERSION = @PACKAGE_VERSION@
  257. PATH_SEPARATOR = @PATH_SEPARATOR@
  258. RANLIB = @RANLIB@
  259. SED = @SED@
  260. SET_MAKE = @SET_MAKE@
  261. SHELL = @SHELL@
  262. STRIP = @STRIP@
  263. VERSION = @VERSION@
  264. XMMS_CFLAGS = @XMMS_CFLAGS@
  265. XMMS_CONFIG = @XMMS_CONFIG@
  266. XMMS_DATA_DIR = @XMMS_DATA_DIR@
  267. XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@
  268. XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@
  269. XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@
  270. XMMS_LIBS = @XMMS_LIBS@
  271. XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@
  272. XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@
  273. XMMS_VERSION = @XMMS_VERSION@
  274. XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@
  275. abs_builddir = @abs_builddir@
  276. abs_srcdir = @abs_srcdir@
  277. abs_top_builddir = @abs_top_builddir@
  278. abs_top_srcdir = @abs_top_srcdir@
  279. ac_ct_AR = @ac_ct_AR@
  280. ac_ct_CC = @ac_ct_CC@
  281. ac_ct_CXX = @ac_ct_CXX@
  282. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  283. am__include = @am__include@
  284. am__leading_dot = @am__leading_dot@
  285. am__quote = @am__quote@
  286. am__tar = @am__tar@
  287. am__untar = @am__untar@
  288. bindir = @bindir@
  289. build = @build@
  290. build_alias = @build_alias@
  291. build_cpu = @build_cpu@
  292. build_os = @build_os@
  293. build_vendor = @build_vendor@
  294. builddir = @builddir@
  295. datadir = @datadir@
  296. datarootdir = @datarootdir@
  297. docdir = @docdir@
  298. dvidir = @dvidir@
  299. exec_prefix = @exec_prefix@
  300. host = @host@
  301. host_alias = @host_alias@
  302. host_cpu = @host_cpu@
  303. host_os = @host_os@
  304. host_vendor = @host_vendor@
  305. htmldir = @htmldir@
  306. includedir = @includedir@
  307. infodir = @infodir@
  308. install_sh = @install_sh@
  309. libdir = @libdir@
  310. libexecdir = @libexecdir@
  311. localedir = @localedir@
  312. localstatedir = @localstatedir@
  313. mandir = @mandir@
  314. mkdir_p = @mkdir_p@
  315. oldincludedir = @oldincludedir@
  316. pdfdir = @pdfdir@
  317. prefix = @prefix@
  318. program_transform_name = @program_transform_name@
  319. psdir = @psdir@
  320. runstatedir = @runstatedir@
  321. sbindir = @sbindir@
  322. sharedstatedir = @sharedstatedir@
  323. srcdir = @srcdir@
  324. sysconfdir = @sysconfdir@
  325. target_alias = @target_alias@
  326. top_build_prefix = @top_build_prefix@
  327. top_builddir = @top_builddir@
  328. top_srcdir = @top_srcdir@
  329. man_MANS = flac.1 metaflac.1
  330. EXTRA_DIST = $(man_MANS) flac.sgml metaflac.sgml
  331. all: all-am
  332. .SUFFIXES:
  333. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  334. @for dep in $?; do \
  335. case '$(am__configure_deps)' in \
  336. *$$dep*) \
  337. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  338. && { if test -f $@; then exit 0; else break; fi; }; \
  339. exit 1;; \
  340. esac; \
  341. done; \
  342. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign man/Makefile'; \
  343. $(am__cd) $(top_srcdir) && \
  344. $(AUTOMAKE) --foreign man/Makefile
  345. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  346. @case '$?' in \
  347. *config.status*) \
  348. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  349. *) \
  350. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  351. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  352. esac;
  353. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  354. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  355. $(top_srcdir)/configure: $(am__configure_deps)
  356. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  357. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  358. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  359. $(am__aclocal_m4_deps):
  360. mostlyclean-libtool:
  361. -rm -f *.lo
  362. clean-libtool:
  363. -rm -rf .libs _libs
  364. install-man1: $(man_MANS)
  365. @$(NORMAL_INSTALL)
  366. @list1=''; \
  367. list2='$(man_MANS)'; \
  368. test -n "$(man1dir)" \
  369. && test -n "`echo $$list1$$list2`" \
  370. || exit 0; \
  371. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  372. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  373. { for i in $$list1; do echo "$$i"; done; \
  374. if test -n "$$list2"; then \
  375. for i in $$list2; do echo "$$i"; done \
  376. | sed -n '/\.1[a-z]*$$/p'; \
  377. fi; \
  378. } | while read p; do \
  379. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  380. echo "$$d$$p"; echo "$$p"; \
  381. done | \
  382. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  383. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  384. sed 'N;N;s,\n, ,g' | { \
  385. list=; while read file base inst; do \
  386. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  387. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  388. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  389. fi; \
  390. done; \
  391. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  392. while read files; do \
  393. test -z "$$files" || { \
  394. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  395. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  396. done; }
  397. uninstall-man1:
  398. @$(NORMAL_UNINSTALL)
  399. @list=''; test -n "$(man1dir)" || exit 0; \
  400. files=`{ for i in $$list; do echo "$$i"; done; \
  401. l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  402. sed -n '/\.1[a-z]*$$/p'; \
  403. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  404. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  405. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  406. tags TAGS:
  407. ctags CTAGS:
  408. cscope cscopelist:
  409. distdir: $(DISTFILES)
  410. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  411. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  412. list='$(DISTFILES)'; \
  413. dist_files=`for file in $$list; do echo $$file; done | \
  414. sed -e "s|^$$srcdirstrip/||;t" \
  415. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  416. case $$dist_files in \
  417. */*) $(MKDIR_P) `echo "$$dist_files" | \
  418. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  419. sort -u` ;; \
  420. esac; \
  421. for file in $$dist_files; do \
  422. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  423. if test -d $$d/$$file; then \
  424. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  425. if test -d "$(distdir)/$$file"; then \
  426. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  427. fi; \
  428. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  429. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  430. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  431. fi; \
  432. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  433. else \
  434. test -f "$(distdir)/$$file" \
  435. || cp -p $$d/$$file "$(distdir)/$$file" \
  436. || exit 1; \
  437. fi; \
  438. done
  439. check-am: all-am
  440. check: check-am
  441. all-am: Makefile $(MANS)
  442. installdirs:
  443. for dir in "$(DESTDIR)$(man1dir)"; do \
  444. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  445. done
  446. install: install-am
  447. install-exec: install-exec-am
  448. install-data: install-data-am
  449. uninstall: uninstall-am
  450. install-am: all-am
  451. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  452. installcheck: installcheck-am
  453. install-strip:
  454. if test -z '$(STRIP)'; then \
  455. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  456. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  457. install; \
  458. else \
  459. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  460. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  461. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  462. fi
  463. mostlyclean-generic:
  464. clean-generic:
  465. distclean-generic:
  466. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  467. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  468. maintainer-clean-generic:
  469. @echo "This command is intended for maintainers to use"
  470. @echo "it deletes files that may require special tools to rebuild."
  471. clean: clean-am
  472. clean-am: clean-generic clean-libtool mostlyclean-am
  473. distclean: distclean-am
  474. -rm -f Makefile
  475. distclean-am: clean-am distclean-generic
  476. dvi: dvi-am
  477. dvi-am:
  478. html: html-am
  479. html-am:
  480. info: info-am
  481. info-am:
  482. install-data-am: install-man
  483. install-dvi: install-dvi-am
  484. install-dvi-am:
  485. install-exec-am:
  486. install-html: install-html-am
  487. install-html-am:
  488. install-info: install-info-am
  489. install-info-am:
  490. install-man: install-man1
  491. install-pdf: install-pdf-am
  492. install-pdf-am:
  493. install-ps: install-ps-am
  494. install-ps-am:
  495. installcheck-am:
  496. maintainer-clean: maintainer-clean-am
  497. -rm -f Makefile
  498. maintainer-clean-am: distclean-am maintainer-clean-generic
  499. mostlyclean: mostlyclean-am
  500. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  501. pdf: pdf-am
  502. pdf-am:
  503. ps: ps-am
  504. ps-am:
  505. uninstall-am: uninstall-man
  506. uninstall-man: uninstall-man1
  507. .MAKE: install-am install-strip
  508. .PHONY: all all-am check check-am clean clean-generic clean-libtool \
  509. cscopelist-am ctags-am distclean distclean-generic \
  510. distclean-libtool distdir dvi dvi-am html html-am info info-am \
  511. install install-am install-data install-data-am install-dvi \
  512. install-dvi-am install-exec install-exec-am install-html \
  513. install-html-am install-info install-info-am install-man \
  514. install-man1 install-pdf install-pdf-am install-ps \
  515. install-ps-am install-strip installcheck installcheck-am \
  516. installdirs maintainer-clean maintainer-clean-generic \
  517. mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
  518. ps ps-am tags-am uninstall uninstall-am uninstall-man \
  519. uninstall-man1
  520. .PRECIOUS: Makefile
  521. @[email protected]: flac.sgml
  522. @FLaC__HAS_DOCBOOK_TO_MAN_TRUE@ docbook-to-man $? > $@
  523. @FLaC__HAS_DOCBOOK_TO_MAN_TRUE@ (docbook2man $? && mv FLAC.1 $@)
  524. @[email protected]: metaflac.sgml
  525. @FLaC__HAS_DOCBOOK_TO_MAN_TRUE@ docbook-to-man $? > $@
  526. @FLaC__HAS_DOCBOOK_TO_MAN_TRUE@ (docbook2man $? && mv METAFLAC.1 $@)
  527. @[email protected]:
  528. @FLaC__HAS_DOCBOOK_TO_MAN_FALSE@ echo "*** Warning: docbook-to-man not found; man pages will not be built."
  529. @FLaC__HAS_DOCBOOK_TO_MAN_FALSE@ touch $@
  530. @[email protected]:
  531. @FLaC__HAS_DOCBOOK_TO_MAN_FALSE@ touch $@
  532. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  533. # Otherwise a system limit (for SysV at least) may be exceeded.
  534. .NOEXPORT: