Makefile.in 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. # Makefile.in generated by automake 1.11.3 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, 2010, 2011 Free Software
  5. # Foundation, 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. subdir = test
  34. DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
  35. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  36. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  37. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  38. $(ACLOCAL_M4)
  39. mkinstalldirs = $(install_sh) -d
  40. CONFIG_HEADER = $(top_builddir)/config.h
  41. CONFIG_CLEAN_FILES =
  42. CONFIG_CLEAN_VPATH_FILES =
  43. SOURCES =
  44. DIST_SOURCES =
  45. RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
  46. html-recursive info-recursive install-data-recursive \
  47. install-dvi-recursive install-exec-recursive \
  48. install-html-recursive install-info-recursive \
  49. install-pdf-recursive install-ps-recursive install-recursive \
  50. installcheck-recursive installdirs-recursive pdf-recursive \
  51. ps-recursive uninstall-recursive
  52. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  53. distclean-recursive maintainer-clean-recursive
  54. AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
  55. $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
  56. distdir
  57. ETAGS = etags
  58. CTAGS = ctags
  59. am__tty_colors = \
  60. red=; grn=; lgn=; blu=; std=
  61. DIST_SUBDIRS = $(SUBDIRS)
  62. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  63. am__relativize = \
  64. dir0=`pwd`; \
  65. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  66. sed_rest='s,^[^/]*/*,,'; \
  67. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  68. sed_butlast='s,/*[^/]*$$,,'; \
  69. while test -n "$$dir1"; do \
  70. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  71. if test "$$first" != "."; then \
  72. if test "$$first" = ".."; then \
  73. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  74. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  75. else \
  76. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  77. if test "$$first2" = "$$first"; then \
  78. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  79. else \
  80. dir2="../$$dir2"; \
  81. fi; \
  82. dir0="$$dir0"/"$$first"; \
  83. fi; \
  84. fi; \
  85. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  86. done; \
  87. reldir="$$dir2"
  88. ACLOCAL = @ACLOCAL@
  89. AMTAR = @AMTAR@
  90. AR = @AR@
  91. AUTOCONF = @AUTOCONF@
  92. AUTOHEADER = @AUTOHEADER@
  93. AUTOMAKE = @AUTOMAKE@
  94. AWK = @AWK@
  95. CC = @CC@
  96. CCDEPMODE = @CCDEPMODE@
  97. CFLAGS = @CFLAGS@
  98. CPP = @CPP@
  99. CPPFLAGS = @CPPFLAGS@
  100. CYGPATH_W = @CYGPATH_W@
  101. DEFS = @DEFS@
  102. DEPDIR = @DEPDIR@
  103. DLLTOOL = @DLLTOOL@
  104. DSYMUTIL = @DSYMUTIL@
  105. DUMPBIN = @DUMPBIN@
  106. ECHO_C = @ECHO_C@
  107. ECHO_N = @ECHO_N@
  108. ECHO_T = @ECHO_T@
  109. EGREP = @EGREP@
  110. EXEEXT = @EXEEXT@
  111. FGREP = @FGREP@
  112. GREP = @GREP@
  113. INSTALL = @INSTALL@
  114. INSTALL_DATA = @INSTALL_DATA@
  115. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  116. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  117. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  118. LD = @LD@
  119. LDFLAGS = @LDFLAGS@
  120. LIBOBJS = @LIBOBJS@
  121. LIBS = @LIBS@
  122. LIBTOOL = @LIBTOOL@
  123. LIPO = @LIPO@
  124. LN_S = @LN_S@
  125. LTLIBOBJS = @LTLIBOBJS@
  126. MAKEINFO = @MAKEINFO@
  127. MANIFEST_TOOL = @MANIFEST_TOOL@
  128. MKDIR_P = @MKDIR_P@
  129. NM = @NM@
  130. NMEDIT = @NMEDIT@
  131. OBJDUMP = @OBJDUMP@
  132. OBJEXT = @OBJEXT@
  133. OTOOL = @OTOOL@
  134. OTOOL64 = @OTOOL64@
  135. PACKAGE = @PACKAGE@
  136. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  137. PACKAGE_NAME = @PACKAGE_NAME@
  138. PACKAGE_STRING = @PACKAGE_STRING@
  139. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  140. PACKAGE_URL = @PACKAGE_URL@
  141. PACKAGE_VERSION = @PACKAGE_VERSION@
  142. PATH_SEPARATOR = @PATH_SEPARATOR@
  143. RANLIB = @RANLIB@
  144. SED = @SED@
  145. SET_MAKE = @SET_MAKE@
  146. SHELL = @SHELL@
  147. STRIP = @STRIP@
  148. VERSION = @VERSION@
  149. abs_builddir = @abs_builddir@
  150. abs_srcdir = @abs_srcdir@
  151. abs_top_builddir = @abs_top_builddir@
  152. abs_top_srcdir = @abs_top_srcdir@
  153. ac_ct_AR = @ac_ct_AR@
  154. ac_ct_CC = @ac_ct_CC@
  155. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  156. am__include = @am__include@
  157. am__leading_dot = @am__leading_dot@
  158. am__quote = @am__quote@
  159. am__tar = @am__tar@
  160. am__untar = @am__untar@
  161. bindir = @bindir@
  162. build = @build@
  163. build_alias = @build_alias@
  164. build_cpu = @build_cpu@
  165. build_os = @build_os@
  166. build_vendor = @build_vendor@
  167. builddir = @builddir@
  168. datadir = @datadir@
  169. datarootdir = @datarootdir@
  170. docdir = @docdir@
  171. dvidir = @dvidir@
  172. exec_prefix = @exec_prefix@
  173. host = @host@
  174. host_alias = @host_alias@
  175. host_cpu = @host_cpu@
  176. host_os = @host_os@
  177. host_vendor = @host_vendor@
  178. htmldir = @htmldir@
  179. includedir = @includedir@
  180. infodir = @infodir@
  181. install_sh = @install_sh@
  182. json_have_localeconv = @json_have_localeconv@
  183. json_have_long_long = @json_have_long_long@
  184. json_inline = @json_inline@
  185. libdir = @libdir@
  186. libexecdir = @libexecdir@
  187. localedir = @localedir@
  188. localstatedir = @localstatedir@
  189. mandir = @mandir@
  190. mkdir_p = @mkdir_p@
  191. oldincludedir = @oldincludedir@
  192. pdfdir = @pdfdir@
  193. prefix = @prefix@
  194. program_transform_name = @program_transform_name@
  195. psdir = @psdir@
  196. sbindir = @sbindir@
  197. sharedstatedir = @sharedstatedir@
  198. srcdir = @srcdir@
  199. sysconfdir = @sysconfdir@
  200. target_alias = @target_alias@
  201. top_build_prefix = @top_build_prefix@
  202. top_builddir = @top_builddir@
  203. top_srcdir = @top_srcdir@
  204. SUBDIRS = bin suites
  205. EXTRA_DIST = scripts run-suites
  206. TESTS = run-suites
  207. TESTS_ENVIRONMENT = \
  208. top_srcdir=$(top_srcdir) \
  209. top_builddir=$(top_builddir)
  210. all: all-recursive
  211. .SUFFIXES:
  212. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  213. @for dep in $?; do \
  214. case '$(am__configure_deps)' in \
  215. *$$dep*) \
  216. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  217. && { if test -f $@; then exit 0; else break; fi; }; \
  218. exit 1;; \
  219. esac; \
  220. done; \
  221. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \
  222. $(am__cd) $(top_srcdir) && \
  223. $(AUTOMAKE) --foreign test/Makefile
  224. .PRECIOUS: Makefile
  225. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  226. @case '$?' in \
  227. *config.status*) \
  228. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  229. *) \
  230. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  231. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  232. esac;
  233. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  234. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  235. $(top_srcdir)/configure: $(am__configure_deps)
  236. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  237. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  238. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  239. $(am__aclocal_m4_deps):
  240. mostlyclean-libtool:
  241. -rm -f *.lo
  242. clean-libtool:
  243. -rm -rf .libs _libs
  244. # This directory's subdirectories are mostly independent; you can cd
  245. # into them and run `make' without going through this Makefile.
  246. # To change the values of `make' variables: instead of editing Makefiles,
  247. # (1) if the variable is set in `config.status', edit `config.status'
  248. # (which will cause the Makefiles to be regenerated when you run `make');
  249. # (2) otherwise, pass the desired values on the `make' command line.
  250. $(RECURSIVE_TARGETS):
  251. @fail= failcom='exit 1'; \
  252. for f in x $$MAKEFLAGS; do \
  253. case $$f in \
  254. *=* | --[!k]*);; \
  255. *k*) failcom='fail=yes';; \
  256. esac; \
  257. done; \
  258. dot_seen=no; \
  259. target=`echo $@ | sed s/-recursive//`; \
  260. list='$(SUBDIRS)'; for subdir in $$list; do \
  261. echo "Making $$target in $$subdir"; \
  262. if test "$$subdir" = "."; then \
  263. dot_seen=yes; \
  264. local_target="$$target-am"; \
  265. else \
  266. local_target="$$target"; \
  267. fi; \
  268. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  269. || eval $$failcom; \
  270. done; \
  271. if test "$$dot_seen" = "no"; then \
  272. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  273. fi; test -z "$$fail"
  274. $(RECURSIVE_CLEAN_TARGETS):
  275. @fail= failcom='exit 1'; \
  276. for f in x $$MAKEFLAGS; do \
  277. case $$f in \
  278. *=* | --[!k]*);; \
  279. *k*) failcom='fail=yes';; \
  280. esac; \
  281. done; \
  282. dot_seen=no; \
  283. case "$@" in \
  284. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  285. *) list='$(SUBDIRS)' ;; \
  286. esac; \
  287. rev=''; for subdir in $$list; do \
  288. if test "$$subdir" = "."; then :; else \
  289. rev="$$subdir $$rev"; \
  290. fi; \
  291. done; \
  292. rev="$$rev ."; \
  293. target=`echo $@ | sed s/-recursive//`; \
  294. for subdir in $$rev; do \
  295. echo "Making $$target in $$subdir"; \
  296. if test "$$subdir" = "."; then \
  297. local_target="$$target-am"; \
  298. else \
  299. local_target="$$target"; \
  300. fi; \
  301. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  302. || eval $$failcom; \
  303. done && test -z "$$fail"
  304. tags-recursive:
  305. list='$(SUBDIRS)'; for subdir in $$list; do \
  306. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  307. done
  308. ctags-recursive:
  309. list='$(SUBDIRS)'; for subdir in $$list; do \
  310. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
  311. done
  312. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  313. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  314. unique=`for i in $$list; do \
  315. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  316. done | \
  317. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  318. END { if (nonempty) { for (i in files) print i; }; }'`; \
  319. mkid -fID $$unique
  320. tags: TAGS
  321. TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  322. $(TAGS_FILES) $(LISP)
  323. set x; \
  324. here=`pwd`; \
  325. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  326. include_option=--etags-include; \
  327. empty_fix=.; \
  328. else \
  329. include_option=--include; \
  330. empty_fix=; \
  331. fi; \
  332. list='$(SUBDIRS)'; for subdir in $$list; do \
  333. if test "$$subdir" = .; then :; else \
  334. test ! -f $$subdir/TAGS || \
  335. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  336. fi; \
  337. done; \
  338. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  339. unique=`for i in $$list; do \
  340. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  341. done | \
  342. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  343. END { if (nonempty) { for (i in files) print i; }; }'`; \
  344. shift; \
  345. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  346. test -n "$$unique" || unique=$$empty_fix; \
  347. if test $$# -gt 0; then \
  348. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  349. "$$@" $$unique; \
  350. else \
  351. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  352. $$unique; \
  353. fi; \
  354. fi
  355. ctags: CTAGS
  356. CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  357. $(TAGS_FILES) $(LISP)
  358. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  359. unique=`for i in $$list; do \
  360. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  361. done | \
  362. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  363. END { if (nonempty) { for (i in files) print i; }; }'`; \
  364. test -z "$(CTAGS_ARGS)$$unique" \
  365. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  366. $$unique
  367. GTAGS:
  368. here=`$(am__cd) $(top_builddir) && pwd` \
  369. && $(am__cd) $(top_srcdir) \
  370. && gtags -i $(GTAGS_ARGS) "$$here"
  371. distclean-tags:
  372. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  373. check-TESTS: $(TESTS)
  374. @failed=0; all=0; xfail=0; xpass=0; skip=0; \
  375. srcdir=$(srcdir); export srcdir; \
  376. list=' $(TESTS) '; \
  377. $(am__tty_colors); \
  378. if test -n "$$list"; then \
  379. for tst in $$list; do \
  380. if test -f ./$$tst; then dir=./; \
  381. elif test -f $$tst; then dir=; \
  382. else dir="$(srcdir)/"; fi; \
  383. if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
  384. all=`expr $$all + 1`; \
  385. case " $(XFAIL_TESTS) " in \
  386. *[\ \ ]$$tst[\ \ ]*) \
  387. xpass=`expr $$xpass + 1`; \
  388. failed=`expr $$failed + 1`; \
  389. col=$$red; res=XPASS; \
  390. ;; \
  391. *) \
  392. col=$$grn; res=PASS; \
  393. ;; \
  394. esac; \
  395. elif test $$? -ne 77; then \
  396. all=`expr $$all + 1`; \
  397. case " $(XFAIL_TESTS) " in \
  398. *[\ \ ]$$tst[\ \ ]*) \
  399. xfail=`expr $$xfail + 1`; \
  400. col=$$lgn; res=XFAIL; \
  401. ;; \
  402. *) \
  403. failed=`expr $$failed + 1`; \
  404. col=$$red; res=FAIL; \
  405. ;; \
  406. esac; \
  407. else \
  408. skip=`expr $$skip + 1`; \
  409. col=$$blu; res=SKIP; \
  410. fi; \
  411. echo "$${col}$$res$${std}: $$tst"; \
  412. done; \
  413. if test "$$all" -eq 1; then \
  414. tests="test"; \
  415. All=""; \
  416. else \
  417. tests="tests"; \
  418. All="All "; \
  419. fi; \
  420. if test "$$failed" -eq 0; then \
  421. if test "$$xfail" -eq 0; then \
  422. banner="$$All$$all $$tests passed"; \
  423. else \
  424. if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
  425. banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
  426. fi; \
  427. else \
  428. if test "$$xpass" -eq 0; then \
  429. banner="$$failed of $$all $$tests failed"; \
  430. else \
  431. if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
  432. banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
  433. fi; \
  434. fi; \
  435. dashes="$$banner"; \
  436. skipped=""; \
  437. if test "$$skip" -ne 0; then \
  438. if test "$$skip" -eq 1; then \
  439. skipped="($$skip test was not run)"; \
  440. else \
  441. skipped="($$skip tests were not run)"; \
  442. fi; \
  443. test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
  444. dashes="$$skipped"; \
  445. fi; \
  446. report=""; \
  447. if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
  448. report="Please report to $(PACKAGE_BUGREPORT)"; \
  449. test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
  450. dashes="$$report"; \
  451. fi; \
  452. dashes=`echo "$$dashes" | sed s/./=/g`; \
  453. if test "$$failed" -eq 0; then \
  454. col="$$grn"; \
  455. else \
  456. col="$$red"; \
  457. fi; \
  458. echo "$${col}$$dashes$${std}"; \
  459. echo "$${col}$$banner$${std}"; \
  460. test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
  461. test -z "$$report" || echo "$${col}$$report$${std}"; \
  462. echo "$${col}$$dashes$${std}"; \
  463. test "$$failed" -eq 0; \
  464. else :; fi
  465. distdir: $(DISTFILES)
  466. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  467. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  468. list='$(DISTFILES)'; \
  469. dist_files=`for file in $$list; do echo $$file; done | \
  470. sed -e "s|^$$srcdirstrip/||;t" \
  471. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  472. case $$dist_files in \
  473. */*) $(MKDIR_P) `echo "$$dist_files" | \
  474. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  475. sort -u` ;; \
  476. esac; \
  477. for file in $$dist_files; do \
  478. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  479. if test -d $$d/$$file; then \
  480. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  481. if test -d "$(distdir)/$$file"; then \
  482. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  483. fi; \
  484. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  485. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  486. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  487. fi; \
  488. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  489. else \
  490. test -f "$(distdir)/$$file" \
  491. || cp -p $$d/$$file "$(distdir)/$$file" \
  492. || exit 1; \
  493. fi; \
  494. done
  495. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  496. if test "$$subdir" = .; then :; else \
  497. test -d "$(distdir)/$$subdir" \
  498. || $(MKDIR_P) "$(distdir)/$$subdir" \
  499. || exit 1; \
  500. fi; \
  501. done
  502. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  503. if test "$$subdir" = .; then :; else \
  504. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  505. $(am__relativize); \
  506. new_distdir=$$reldir; \
  507. dir1=$$subdir; dir2="$(top_distdir)"; \
  508. $(am__relativize); \
  509. new_top_distdir=$$reldir; \
  510. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  511. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  512. ($(am__cd) $$subdir && \
  513. $(MAKE) $(AM_MAKEFLAGS) \
  514. top_distdir="$$new_top_distdir" \
  515. distdir="$$new_distdir" \
  516. am__remove_distdir=: \
  517. am__skip_length_check=: \
  518. am__skip_mode_fix=: \
  519. distdir) \
  520. || exit 1; \
  521. fi; \
  522. done
  523. check-am: all-am
  524. $(MAKE) $(AM_MAKEFLAGS) check-TESTS
  525. check: check-recursive
  526. all-am: Makefile
  527. installdirs: installdirs-recursive
  528. installdirs-am:
  529. install: install-recursive
  530. install-exec: install-exec-recursive
  531. install-data: install-data-recursive
  532. uninstall: uninstall-recursive
  533. install-am: all-am
  534. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  535. installcheck: installcheck-recursive
  536. install-strip:
  537. if test -z '$(STRIP)'; then \
  538. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  539. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  540. install; \
  541. else \
  542. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  543. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  544. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  545. fi
  546. mostlyclean-generic:
  547. clean-generic:
  548. distclean-generic:
  549. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  550. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  551. maintainer-clean-generic:
  552. @echo "This command is intended for maintainers to use"
  553. @echo "it deletes files that may require special tools to rebuild."
  554. clean: clean-recursive
  555. clean-am: clean-generic clean-libtool clean-local mostlyclean-am
  556. distclean: distclean-recursive
  557. -rm -f Makefile
  558. distclean-am: clean-am distclean-generic distclean-tags
  559. dvi: dvi-recursive
  560. dvi-am:
  561. html: html-recursive
  562. html-am:
  563. info: info-recursive
  564. info-am:
  565. install-data-am:
  566. install-dvi: install-dvi-recursive
  567. install-dvi-am:
  568. install-exec-am:
  569. install-html: install-html-recursive
  570. install-html-am:
  571. install-info: install-info-recursive
  572. install-info-am:
  573. install-man:
  574. install-pdf: install-pdf-recursive
  575. install-pdf-am:
  576. install-ps: install-ps-recursive
  577. install-ps-am:
  578. installcheck-am:
  579. maintainer-clean: maintainer-clean-recursive
  580. -rm -f Makefile
  581. maintainer-clean-am: distclean-am maintainer-clean-generic
  582. mostlyclean: mostlyclean-recursive
  583. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  584. pdf: pdf-recursive
  585. pdf-am:
  586. ps: ps-recursive
  587. ps-am:
  588. uninstall-am:
  589. .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \
  590. ctags-recursive install-am install-strip tags-recursive
  591. .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
  592. all all-am check check-TESTS check-am clean clean-generic \
  593. clean-libtool clean-local ctags ctags-recursive distclean \
  594. distclean-generic distclean-libtool distclean-tags distdir dvi \
  595. dvi-am html html-am info info-am install install-am \
  596. install-data install-data-am install-dvi install-dvi-am \
  597. install-exec install-exec-am install-html install-html-am \
  598. install-info install-info-am install-man install-pdf \
  599. install-pdf-am install-ps install-ps-am install-strip \
  600. installcheck installcheck-am installdirs installdirs-am \
  601. maintainer-clean maintainer-clean-generic mostlyclean \
  602. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  603. tags tags-recursive uninstall uninstall-am
  604. clean-local:
  605. rm -rf logs
  606. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  607. # Otherwise a system limit (for SysV at least) may be exceeded.
  608. .NOEXPORT:
粤ICP备19079148号