Makefile.in 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. # Makefile.in generated by automake 1.11.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
  4. # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
  5. # Inc.
  6. # This Makefile.in is free software; the Free Software Foundation
  7. # gives unlimited permission to copy and/or distribute it,
  8. # with or without modifications, as long as this notice is preserved.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  11. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. # PARTICULAR PURPOSE.
  13. @SET_MAKE@
  14. VPATH = @srcdir@
  15. pkgdatadir = $(datadir)/@PACKAGE@
  16. pkgincludedir = $(includedir)/@PACKAGE@
  17. pkglibdir = $(libdir)/@PACKAGE@
  18. pkglibexecdir = $(libexecdir)/@PACKAGE@
  19. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  20. install_sh_DATA = $(install_sh) -c -m 644
  21. install_sh_PROGRAM = $(install_sh) -c
  22. install_sh_SCRIPT = $(install_sh) -c
  23. INSTALL_HEADER = $(INSTALL_DATA)
  24. transform = $(program_transform_name)
  25. NORMAL_INSTALL = :
  26. PRE_INSTALL = :
  27. POST_INSTALL = :
  28. NORMAL_UNINSTALL = :
  29. PRE_UNINSTALL = :
  30. POST_UNINSTALL = :
  31. build_triplet = @build@
  32. host_triplet = @host@
  33. target_triplet = @target@
  34. subdir = include
  35. DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
  36. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  37. am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \
  38. $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/pkg.m4 \
  39. $(top_srcdir)/configure.ac
  40. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  41. $(ACLOCAL_M4)
  42. mkinstalldirs = $(install_sh) -d
  43. CONFIG_HEADER = $(top_builddir)/config.h
  44. CONFIG_CLEAN_FILES =
  45. CONFIG_CLEAN_VPATH_FILES =
  46. SOURCES =
  47. DIST_SOURCES =
  48. RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
  49. html-recursive info-recursive install-data-recursive \
  50. install-dvi-recursive install-exec-recursive \
  51. install-html-recursive install-info-recursive \
  52. install-pdf-recursive install-ps-recursive install-recursive \
  53. installcheck-recursive installdirs-recursive pdf-recursive \
  54. ps-recursive uninstall-recursive
  55. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  56. distclean-recursive maintainer-clean-recursive
  57. AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
  58. $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
  59. distdir
  60. ETAGS = etags
  61. CTAGS = ctags
  62. DIST_SUBDIRS = $(SUBDIRS)
  63. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  64. am__relativize = \
  65. dir0=`pwd`; \
  66. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  67. sed_rest='s,^[^/]*/*,,'; \
  68. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  69. sed_butlast='s,/*[^/]*$$,,'; \
  70. while test -n "$$dir1"; do \
  71. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  72. if test "$$first" != "."; then \
  73. if test "$$first" = ".."; then \
  74. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  75. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  76. else \
  77. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  78. if test "$$first2" = "$$first"; then \
  79. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  80. else \
  81. dir2="../$$dir2"; \
  82. fi; \
  83. dir0="$$dir0"/"$$first"; \
  84. fi; \
  85. fi; \
  86. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  87. done; \
  88. reldir="$$dir2"
  89. ACLOCAL = @ACLOCAL@
  90. ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
  91. ALLOCA = @ALLOCA@
  92. AMTAR = @AMTAR@
  93. AR = @AR@
  94. AS = @AS@
  95. AUTOCONF = @AUTOCONF@
  96. AUTOHEADER = @AUTOHEADER@
  97. AUTOMAKE = @AUTOMAKE@
  98. AWK = @AWK@
  99. CC = @CC@
  100. CCDEPMODE = @CCDEPMODE@
  101. CFLAGS = @CFLAGS@
  102. CPP = @CPP@
  103. CPPFLAGS = @CPPFLAGS@
  104. CYGPATH_W = @CYGPATH_W@
  105. DEBUG = @DEBUG@
  106. DEFS = @DEFS@
  107. DEPDIR = @DEPDIR@
  108. DLLTOOL = @DLLTOOL@
  109. DSYMUTIL = @DSYMUTIL@
  110. DUMPBIN = @DUMPBIN@
  111. ECHO_C = @ECHO_C@
  112. ECHO_N = @ECHO_N@
  113. ECHO_T = @ECHO_T@
  114. EGREP = @EGREP@
  115. EXEEXT = @EXEEXT@
  116. FGREP = @FGREP@
  117. GREP = @GREP@
  118. HAVE_DOXYGEN = @HAVE_DOXYGEN@
  119. HTLATEX = @HTLATEX@
  120. INSTALL = @INSTALL@
  121. INSTALL_DATA = @INSTALL_DATA@
  122. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  123. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  124. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  125. LD = @LD@
  126. LDFLAGS = @LDFLAGS@
  127. LIBOBJS = @LIBOBJS@
  128. LIBS = @LIBS@
  129. LIBTOOL = @LIBTOOL@
  130. LIBTOOL_DEPS = @LIBTOOL_DEPS@
  131. LIPO = @LIPO@
  132. LN_S = @LN_S@
  133. LTLIBOBJS = @LTLIBOBJS@
  134. MAINT = @MAINT@
  135. MAKEINFO = @MAKEINFO@
  136. MANIFEST_TOOL = @MANIFEST_TOOL@
  137. MKDIR_P = @MKDIR_P@
  138. NM = @NM@
  139. NMEDIT = @NMEDIT@
  140. OBJDUMP = @OBJDUMP@
  141. OBJEXT = @OBJEXT@
  142. OGG_CFLAGS = @OGG_CFLAGS@
  143. OGG_LIBS = @OGG_LIBS@
  144. OTOOL = @OTOOL@
  145. OTOOL64 = @OTOOL64@
  146. PACKAGE = @PACKAGE@
  147. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  148. PACKAGE_NAME = @PACKAGE_NAME@
  149. PACKAGE_STRING = @PACKAGE_STRING@
  150. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  151. PACKAGE_URL = @PACKAGE_URL@
  152. PACKAGE_VERSION = @PACKAGE_VERSION@
  153. PATH_SEPARATOR = @PATH_SEPARATOR@
  154. PDFLATEX = @PDFLATEX@
  155. PKG_CONFIG = @PKG_CONFIG@
  156. PROFILE = @PROFILE@
  157. RANLIB = @RANLIB@
  158. SED = @SED@
  159. SET_MAKE = @SET_MAKE@
  160. SHELL = @SHELL@
  161. STRIP = @STRIP@
  162. VERSION = @VERSION@
  163. VE_LIB_AGE = @VE_LIB_AGE@
  164. VE_LIB_CURRENT = @VE_LIB_CURRENT@
  165. VE_LIB_REVISION = @VE_LIB_REVISION@
  166. VF_LIB_AGE = @VF_LIB_AGE@
  167. VF_LIB_CURRENT = @VF_LIB_CURRENT@
  168. VF_LIB_REVISION = @VF_LIB_REVISION@
  169. VORBIS_LIBS = @VORBIS_LIBS@
  170. V_LIB_AGE = @V_LIB_AGE@
  171. V_LIB_CURRENT = @V_LIB_CURRENT@
  172. V_LIB_REVISION = @V_LIB_REVISION@
  173. abs_builddir = @abs_builddir@
  174. abs_srcdir = @abs_srcdir@
  175. abs_top_builddir = @abs_top_builddir@
  176. abs_top_srcdir = @abs_top_srcdir@
  177. ac_ct_AR = @ac_ct_AR@
  178. ac_ct_CC = @ac_ct_CC@
  179. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  180. am__include = @am__include@
  181. am__leading_dot = @am__leading_dot@
  182. am__quote = @am__quote@
  183. am__tar = @am__tar@
  184. am__untar = @am__untar@
  185. bindir = @bindir@
  186. build = @build@
  187. build_alias = @build_alias@
  188. build_cpu = @build_cpu@
  189. build_os = @build_os@
  190. build_vendor = @build_vendor@
  191. builddir = @builddir@
  192. datadir = @datadir@
  193. datarootdir = @datarootdir@
  194. docdir = @docdir@
  195. dvidir = @dvidir@
  196. exec_prefix = @exec_prefix@
  197. host = @host@
  198. host_alias = @host_alias@
  199. host_cpu = @host_cpu@
  200. host_os = @host_os@
  201. host_vendor = @host_vendor@
  202. htmldir = @htmldir@
  203. includedir = @includedir@
  204. infodir = @infodir@
  205. install_sh = @install_sh@
  206. libdir = @libdir@
  207. libexecdir = @libexecdir@
  208. localedir = @localedir@
  209. localstatedir = @localstatedir@
  210. mandir = @mandir@
  211. mkdir_p = @mkdir_p@
  212. oldincludedir = @oldincludedir@
  213. pdfdir = @pdfdir@
  214. prefix = @prefix@
  215. program_transform_name = @program_transform_name@
  216. psdir = @psdir@
  217. pthread_lib = @pthread_lib@
  218. sbindir = @sbindir@
  219. sharedstatedir = @sharedstatedir@
  220. srcdir = @srcdir@
  221. sysconfdir = @sysconfdir@
  222. target = @target@
  223. target_alias = @target_alias@
  224. target_cpu = @target_cpu@
  225. target_os = @target_os@
  226. target_vendor = @target_vendor@
  227. top_build_prefix = @top_build_prefix@
  228. top_builddir = @top_builddir@
  229. top_srcdir = @top_srcdir@
  230. SUBDIRS = vorbis
  231. all: all-recursive
  232. .SUFFIXES:
  233. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  234. @for dep in $?; do \
  235. case '$(am__configure_deps)' in \
  236. *$$dep*) \
  237. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  238. && { if test -f $@; then exit 0; else break; fi; }; \
  239. exit 1;; \
  240. esac; \
  241. done; \
  242. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \
  243. $(am__cd) $(top_srcdir) && \
  244. $(AUTOMAKE) --gnu include/Makefile
  245. .PRECIOUS: Makefile
  246. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  247. @case '$?' in \
  248. *config.status*) \
  249. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  250. *) \
  251. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  252. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  253. esac;
  254. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  255. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  256. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  257. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  258. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  259. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  260. $(am__aclocal_m4_deps):
  261. mostlyclean-libtool:
  262. -rm -f *.lo
  263. clean-libtool:
  264. -rm -rf .libs _libs
  265. # This directory's subdirectories are mostly independent; you can cd
  266. # into them and run `make' without going through this Makefile.
  267. # To change the values of `make' variables: instead of editing Makefiles,
  268. # (1) if the variable is set in `config.status', edit `config.status'
  269. # (which will cause the Makefiles to be regenerated when you run `make');
  270. # (2) otherwise, pass the desired values on the `make' command line.
  271. $(RECURSIVE_TARGETS):
  272. @fail= failcom='exit 1'; \
  273. for f in x $$MAKEFLAGS; do \
  274. case $$f in \
  275. *=* | --[!k]*);; \
  276. *k*) failcom='fail=yes';; \
  277. esac; \
  278. done; \
  279. dot_seen=no; \
  280. target=`echo $@ | sed s/-recursive//`; \
  281. list='$(SUBDIRS)'; for subdir in $$list; do \
  282. echo "Making $$target in $$subdir"; \
  283. if test "$$subdir" = "."; then \
  284. dot_seen=yes; \
  285. local_target="$$target-am"; \
  286. else \
  287. local_target="$$target"; \
  288. fi; \
  289. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  290. || eval $$failcom; \
  291. done; \
  292. if test "$$dot_seen" = "no"; then \
  293. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  294. fi; test -z "$$fail"
  295. $(RECURSIVE_CLEAN_TARGETS):
  296. @fail= failcom='exit 1'; \
  297. for f in x $$MAKEFLAGS; do \
  298. case $$f in \
  299. *=* | --[!k]*);; \
  300. *k*) failcom='fail=yes';; \
  301. esac; \
  302. done; \
  303. dot_seen=no; \
  304. case "$@" in \
  305. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  306. *) list='$(SUBDIRS)' ;; \
  307. esac; \
  308. rev=''; for subdir in $$list; do \
  309. if test "$$subdir" = "."; then :; else \
  310. rev="$$subdir $$rev"; \
  311. fi; \
  312. done; \
  313. rev="$$rev ."; \
  314. target=`echo $@ | sed s/-recursive//`; \
  315. for subdir in $$rev; do \
  316. echo "Making $$target in $$subdir"; \
  317. if test "$$subdir" = "."; then \
  318. local_target="$$target-am"; \
  319. else \
  320. local_target="$$target"; \
  321. fi; \
  322. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  323. || eval $$failcom; \
  324. done && test -z "$$fail"
  325. tags-recursive:
  326. list='$(SUBDIRS)'; for subdir in $$list; do \
  327. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  328. done
  329. ctags-recursive:
  330. list='$(SUBDIRS)'; for subdir in $$list; do \
  331. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
  332. done
  333. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  334. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  335. unique=`for i in $$list; do \
  336. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  337. done | \
  338. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  339. END { if (nonempty) { for (i in files) print i; }; }'`; \
  340. mkid -fID $$unique
  341. tags: TAGS
  342. TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  343. $(TAGS_FILES) $(LISP)
  344. set x; \
  345. here=`pwd`; \
  346. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  347. include_option=--etags-include; \
  348. empty_fix=.; \
  349. else \
  350. include_option=--include; \
  351. empty_fix=; \
  352. fi; \
  353. list='$(SUBDIRS)'; for subdir in $$list; do \
  354. if test "$$subdir" = .; then :; else \
  355. test ! -f $$subdir/TAGS || \
  356. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  357. fi; \
  358. done; \
  359. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  360. unique=`for i in $$list; do \
  361. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  362. done | \
  363. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  364. END { if (nonempty) { for (i in files) print i; }; }'`; \
  365. shift; \
  366. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  367. test -n "$$unique" || unique=$$empty_fix; \
  368. if test $$# -gt 0; then \
  369. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  370. "$$@" $$unique; \
  371. else \
  372. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  373. $$unique; \
  374. fi; \
  375. fi
  376. ctags: CTAGS
  377. CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  378. $(TAGS_FILES) $(LISP)
  379. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  380. unique=`for i in $$list; do \
  381. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  382. done | \
  383. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  384. END { if (nonempty) { for (i in files) print i; }; }'`; \
  385. test -z "$(CTAGS_ARGS)$$unique" \
  386. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  387. $$unique
  388. GTAGS:
  389. here=`$(am__cd) $(top_builddir) && pwd` \
  390. && $(am__cd) $(top_srcdir) \
  391. && gtags -i $(GTAGS_ARGS) "$$here"
  392. distclean-tags:
  393. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  394. distdir: $(DISTFILES)
  395. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  396. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  397. list='$(DISTFILES)'; \
  398. dist_files=`for file in $$list; do echo $$file; done | \
  399. sed -e "s|^$$srcdirstrip/||;t" \
  400. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  401. case $$dist_files in \
  402. */*) $(MKDIR_P) `echo "$$dist_files" | \
  403. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  404. sort -u` ;; \
  405. esac; \
  406. for file in $$dist_files; do \
  407. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  408. if test -d $$d/$$file; then \
  409. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  410. if test -d "$(distdir)/$$file"; then \
  411. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  412. fi; \
  413. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  414. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  415. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  416. fi; \
  417. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  418. else \
  419. test -f "$(distdir)/$$file" \
  420. || cp -p $$d/$$file "$(distdir)/$$file" \
  421. || exit 1; \
  422. fi; \
  423. done
  424. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  425. if test "$$subdir" = .; then :; else \
  426. test -d "$(distdir)/$$subdir" \
  427. || $(MKDIR_P) "$(distdir)/$$subdir" \
  428. || exit 1; \
  429. fi; \
  430. done
  431. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  432. if test "$$subdir" = .; then :; else \
  433. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  434. $(am__relativize); \
  435. new_distdir=$$reldir; \
  436. dir1=$$subdir; dir2="$(top_distdir)"; \
  437. $(am__relativize); \
  438. new_top_distdir=$$reldir; \
  439. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  440. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  441. ($(am__cd) $$subdir && \
  442. $(MAKE) $(AM_MAKEFLAGS) \
  443. top_distdir="$$new_top_distdir" \
  444. distdir="$$new_distdir" \
  445. am__remove_distdir=: \
  446. am__skip_length_check=: \
  447. am__skip_mode_fix=: \
  448. distdir) \
  449. || exit 1; \
  450. fi; \
  451. done
  452. check-am: all-am
  453. check: check-recursive
  454. all-am: Makefile
  455. installdirs: installdirs-recursive
  456. installdirs-am:
  457. install: install-recursive
  458. install-exec: install-exec-recursive
  459. install-data: install-data-recursive
  460. uninstall: uninstall-recursive
  461. install-am: all-am
  462. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  463. installcheck: installcheck-recursive
  464. install-strip:
  465. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  466. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  467. `test -z '$(STRIP)' || \
  468. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  469. mostlyclean-generic:
  470. clean-generic:
  471. distclean-generic:
  472. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  473. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  474. maintainer-clean-generic:
  475. @echo "This command is intended for maintainers to use"
  476. @echo "it deletes files that may require special tools to rebuild."
  477. clean: clean-recursive
  478. clean-am: clean-generic clean-libtool mostlyclean-am
  479. distclean: distclean-recursive
  480. -rm -f Makefile
  481. distclean-am: clean-am distclean-generic distclean-tags
  482. dvi: dvi-recursive
  483. dvi-am:
  484. html: html-recursive
  485. html-am:
  486. info: info-recursive
  487. info-am:
  488. install-data-am:
  489. install-dvi: install-dvi-recursive
  490. install-dvi-am:
  491. install-exec-am:
  492. install-html: install-html-recursive
  493. install-html-am:
  494. install-info: install-info-recursive
  495. install-info-am:
  496. install-man:
  497. install-pdf: install-pdf-recursive
  498. install-pdf-am:
  499. install-ps: install-ps-recursive
  500. install-ps-am:
  501. installcheck-am:
  502. maintainer-clean: maintainer-clean-recursive
  503. -rm -f Makefile
  504. maintainer-clean-am: distclean-am maintainer-clean-generic
  505. mostlyclean: mostlyclean-recursive
  506. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  507. pdf: pdf-recursive
  508. pdf-am:
  509. ps: ps-recursive
  510. ps-am:
  511. uninstall-am:
  512. .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
  513. install-am install-strip tags-recursive
  514. .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
  515. all all-am check check-am clean clean-generic clean-libtool \
  516. ctags ctags-recursive distclean distclean-generic \
  517. distclean-libtool distclean-tags distdir dvi dvi-am html \
  518. html-am info info-am install install-am install-data \
  519. install-data-am install-dvi install-dvi-am install-exec \
  520. install-exec-am install-html install-html-am install-info \
  521. install-info-am install-man install-pdf install-pdf-am \
  522. install-ps install-ps-am install-strip installcheck \
  523. installcheck-am installdirs installdirs-am maintainer-clean \
  524. maintainer-clean-generic mostlyclean mostlyclean-generic \
  525. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
  526. uninstall uninstall-am
  527. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  528. # Otherwise a system limit (for SysV at least) may be exceeded.
  529. .NOEXPORT: