Makefile.in 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  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/images
  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. am__installdirs = "$(DESTDIR)$(docdir)"
  170. DATA = $(doc_DATA)
  171. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  172. am__DIST_COMMON = $(srcdir)/Makefile.in
  173. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  174. ACLOCAL = @ACLOCAL@
  175. AMTAR = @AMTAR@
  176. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  177. AR = @AR@
  178. AS = @AS@
  179. AUTOCONF = @AUTOCONF@
  180. AUTOHEADER = @AUTOHEADER@
  181. AUTOMAKE = @AUTOMAKE@
  182. AWK = @AWK@
  183. CC = @CC@
  184. CCAS = @CCAS@
  185. CCASDEPMODE = @CCASDEPMODE@
  186. CCASFLAGS = @CCASFLAGS@
  187. CCDEPMODE = @CCDEPMODE@
  188. CFLAGS = @CFLAGS@
  189. CPP = @CPP@
  190. CPPFLAGS = @CPPFLAGS@
  191. CXX = @CXX@
  192. CXXCPP = @CXXCPP@
  193. CXXDEPMODE = @CXXDEPMODE@
  194. CXXFLAGS = @CXXFLAGS@
  195. CYGPATH_W = @CYGPATH_W@
  196. DEFS = @DEFS@
  197. DEPDIR = @DEPDIR@
  198. DLLTOOL = @DLLTOOL@
  199. DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@
  200. DOXYGEN = @DOXYGEN@
  201. DSYMUTIL = @DSYMUTIL@
  202. DUMPBIN = @DUMPBIN@
  203. ECHO_C = @ECHO_C@
  204. ECHO_N = @ECHO_N@
  205. ECHO_T = @ECHO_T@
  206. EGREP = @EGREP@
  207. ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@
  208. EXEEXT = @EXEEXT@
  209. FGREP = @FGREP@
  210. FLAC__HAS_OGG = @FLAC__HAS_OGG@
  211. FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@
  212. FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@
  213. GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@
  214. GCC_MINOR_VERSION = @GCC_MINOR_VERSION@
  215. GCC_VERSION = @GCC_VERSION@
  216. GREP = @GREP@
  217. INSTALL = @INSTALL@
  218. INSTALL_DATA = @INSTALL_DATA@
  219. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  220. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  221. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  222. LD = @LD@
  223. LDFLAGS = @LDFLAGS@
  224. LIBICONV = @LIBICONV@
  225. LIBOBJS = @LIBOBJS@
  226. LIBS = @LIBS@
  227. LIBTOOL = @LIBTOOL@
  228. LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
  229. LIPO = @LIPO@
  230. LN_S = @LN_S@
  231. LTLIBICONV = @LTLIBICONV@
  232. LTLIBOBJS = @LTLIBOBJS@
  233. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  234. MAKEINFO = @MAKEINFO@
  235. MANIFEST_TOOL = @MANIFEST_TOOL@
  236. MKDIR_P = @MKDIR_P@
  237. NASM = @NASM@
  238. NM = @NM@
  239. NMEDIT = @NMEDIT@
  240. OBJDUMP = @OBJDUMP@
  241. OBJEXT = @OBJEXT@
  242. OBJ_FORMAT = @OBJ_FORMAT@
  243. OGG_CFLAGS = @OGG_CFLAGS@
  244. OGG_LIBS = @OGG_LIBS@
  245. OGG_PACKAGE = @OGG_PACKAGE@
  246. OTOOL = @OTOOL@
  247. OTOOL64 = @OTOOL64@
  248. PACKAGE = @PACKAGE@
  249. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  250. PACKAGE_NAME = @PACKAGE_NAME@
  251. PACKAGE_STRING = @PACKAGE_STRING@
  252. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  253. PACKAGE_URL = @PACKAGE_URL@
  254. PACKAGE_VERSION = @PACKAGE_VERSION@
  255. PATH_SEPARATOR = @PATH_SEPARATOR@
  256. RANLIB = @RANLIB@
  257. SED = @SED@
  258. SET_MAKE = @SET_MAKE@
  259. SHELL = @SHELL@
  260. STRIP = @STRIP@
  261. VERSION = @VERSION@
  262. XMMS_CFLAGS = @XMMS_CFLAGS@
  263. XMMS_CONFIG = @XMMS_CONFIG@
  264. XMMS_DATA_DIR = @XMMS_DATA_DIR@
  265. XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@
  266. XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@
  267. XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@
  268. XMMS_LIBS = @XMMS_LIBS@
  269. XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@
  270. XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@
  271. XMMS_VERSION = @XMMS_VERSION@
  272. XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@
  273. abs_builddir = @abs_builddir@
  274. abs_srcdir = @abs_srcdir@
  275. abs_top_builddir = @abs_top_builddir@
  276. abs_top_srcdir = @abs_top_srcdir@
  277. ac_ct_AR = @ac_ct_AR@
  278. ac_ct_CC = @ac_ct_CC@
  279. ac_ct_CXX = @ac_ct_CXX@
  280. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  281. am__include = @am__include@
  282. am__leading_dot = @am__leading_dot@
  283. am__quote = @am__quote@
  284. am__tar = @am__tar@
  285. am__untar = @am__untar@
  286. bindir = @bindir@
  287. build = @build@
  288. build_alias = @build_alias@
  289. build_cpu = @build_cpu@
  290. build_os = @build_os@
  291. build_vendor = @build_vendor@
  292. builddir = @builddir@
  293. datadir = @datadir@
  294. datarootdir = @datarootdir@
  295. docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html/images
  296. dvidir = @dvidir@
  297. exec_prefix = @exec_prefix@
  298. host = @host@
  299. host_alias = @host_alias@
  300. host_cpu = @host_cpu@
  301. host_os = @host_os@
  302. host_vendor = @host_vendor@
  303. htmldir = @htmldir@
  304. includedir = @includedir@
  305. infodir = @infodir@
  306. install_sh = @install_sh@
  307. libdir = @libdir@
  308. libexecdir = @libexecdir@
  309. localedir = @localedir@
  310. localstatedir = @localstatedir@
  311. mandir = @mandir@
  312. mkdir_p = @mkdir_p@
  313. oldincludedir = @oldincludedir@
  314. pdfdir = @pdfdir@
  315. prefix = @prefix@
  316. program_transform_name = @program_transform_name@
  317. psdir = @psdir@
  318. runstatedir = @runstatedir@
  319. sbindir = @sbindir@
  320. sharedstatedir = @sharedstatedir@
  321. srcdir = @srcdir@
  322. sysconfdir = @sysconfdir@
  323. target_alias = @target_alias@
  324. top_build_prefix = @top_build_prefix@
  325. top_builddir = @top_builddir@
  326. top_srcdir = @top_srcdir@
  327. doc_DATA = \
  328. logo.svg \
  329. logo130.gif
  330. EXTRA_DIST = $(doc_DATA)
  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 doc/html/images/Makefile'; \
  343. $(am__cd) $(top_srcdir) && \
  344. $(AUTOMAKE) --foreign doc/html/images/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-docDATA: $(doc_DATA)
  365. @$(NORMAL_INSTALL)
  366. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  367. if test -n "$$list"; then \
  368. echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
  369. $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
  370. fi; \
  371. for p in $$list; do \
  372. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  373. echo "$$d$$p"; \
  374. done | $(am__base_list) | \
  375. while read files; do \
  376. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
  377. $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
  378. done
  379. uninstall-docDATA:
  380. @$(NORMAL_UNINSTALL)
  381. @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
  382. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  383. dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
  384. tags TAGS:
  385. ctags CTAGS:
  386. cscope cscopelist:
  387. distdir: $(DISTFILES)
  388. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  389. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  390. list='$(DISTFILES)'; \
  391. dist_files=`for file in $$list; do echo $$file; done | \
  392. sed -e "s|^$$srcdirstrip/||;t" \
  393. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  394. case $$dist_files in \
  395. */*) $(MKDIR_P) `echo "$$dist_files" | \
  396. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  397. sort -u` ;; \
  398. esac; \
  399. for file in $$dist_files; do \
  400. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  401. if test -d $$d/$$file; then \
  402. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  403. if test -d "$(distdir)/$$file"; then \
  404. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  405. fi; \
  406. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  407. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  408. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  409. fi; \
  410. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  411. else \
  412. test -f "$(distdir)/$$file" \
  413. || cp -p $$d/$$file "$(distdir)/$$file" \
  414. || exit 1; \
  415. fi; \
  416. done
  417. check-am: all-am
  418. check: check-am
  419. all-am: Makefile $(DATA)
  420. installdirs:
  421. for dir in "$(DESTDIR)$(docdir)"; do \
  422. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  423. done
  424. install: install-am
  425. install-exec: install-exec-am
  426. install-data: install-data-am
  427. uninstall: uninstall-am
  428. install-am: all-am
  429. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  430. installcheck: installcheck-am
  431. install-strip:
  432. if test -z '$(STRIP)'; then \
  433. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  434. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  435. install; \
  436. else \
  437. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  438. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  439. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  440. fi
  441. mostlyclean-generic:
  442. clean-generic:
  443. distclean-generic:
  444. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  445. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  446. maintainer-clean-generic:
  447. @echo "This command is intended for maintainers to use"
  448. @echo "it deletes files that may require special tools to rebuild."
  449. clean: clean-am
  450. clean-am: clean-generic clean-libtool mostlyclean-am
  451. distclean: distclean-am
  452. -rm -f Makefile
  453. distclean-am: clean-am distclean-generic
  454. dvi: dvi-am
  455. dvi-am:
  456. html: html-am
  457. html-am:
  458. info: info-am
  459. info-am:
  460. install-data-am: install-docDATA
  461. install-dvi: install-dvi-am
  462. install-dvi-am:
  463. install-exec-am:
  464. install-html: install-html-am
  465. install-html-am:
  466. install-info: install-info-am
  467. install-info-am:
  468. install-man:
  469. install-pdf: install-pdf-am
  470. install-pdf-am:
  471. install-ps: install-ps-am
  472. install-ps-am:
  473. installcheck-am:
  474. maintainer-clean: maintainer-clean-am
  475. -rm -f Makefile
  476. maintainer-clean-am: distclean-am maintainer-clean-generic
  477. mostlyclean: mostlyclean-am
  478. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  479. pdf: pdf-am
  480. pdf-am:
  481. ps: ps-am
  482. ps-am:
  483. uninstall-am: uninstall-docDATA
  484. .MAKE: install-am install-strip
  485. .PHONY: all all-am check check-am clean clean-generic clean-libtool \
  486. cscopelist-am ctags-am distclean distclean-generic \
  487. distclean-libtool distdir dvi dvi-am html html-am info info-am \
  488. install install-am install-data install-data-am \
  489. install-docDATA install-dvi install-dvi-am install-exec \
  490. install-exec-am install-html install-html-am install-info \
  491. install-info-am install-man install-pdf install-pdf-am \
  492. install-ps install-ps-am install-strip installcheck \
  493. installcheck-am installdirs maintainer-clean \
  494. maintainer-clean-generic mostlyclean mostlyclean-generic \
  495. mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
  496. uninstall-am uninstall-docDATA
  497. .PRECIOUS: Makefile
  498. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  499. # Otherwise a system limit (for SysV at least) may be exceeded.
  500. .NOEXPORT: