Makefile.in 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  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. VPATH = @srcdir@
  13. am__is_gnu_make = { \
  14. if test -z '$(MAKELEVEL)'; then \
  15. false; \
  16. elif test -n '$(MAKE_HOST)'; then \
  17. true; \
  18. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  19. true; \
  20. else \
  21. false; \
  22. fi; \
  23. }
  24. am__make_running_with_option = \
  25. case $${target_option-} in \
  26. ?) ;; \
  27. *) echo "am__make_running_with_option: internal error: invalid" \
  28. "target option '$${target_option-}' specified" >&2; \
  29. exit 1;; \
  30. esac; \
  31. has_opt=no; \
  32. sane_makeflags=$$MAKEFLAGS; \
  33. if $(am__is_gnu_make); then \
  34. sane_makeflags=$$MFLAGS; \
  35. else \
  36. case $$MAKEFLAGS in \
  37. *\\[\ \ ]*) \
  38. bs=\\; \
  39. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  40. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  41. esac; \
  42. fi; \
  43. skip_next=no; \
  44. strip_trailopt () \
  45. { \
  46. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  47. }; \
  48. for flg in $$sane_makeflags; do \
  49. test $$skip_next = yes && { skip_next=no; continue; }; \
  50. case $$flg in \
  51. *=*|--*) continue;; \
  52. -*I) strip_trailopt 'I'; skip_next=yes;; \
  53. -*I?*) strip_trailopt 'I';; \
  54. -*O) strip_trailopt 'O'; skip_next=yes;; \
  55. -*O?*) strip_trailopt 'O';; \
  56. -*l) strip_trailopt 'l'; skip_next=yes;; \
  57. -*l?*) strip_trailopt 'l';; \
  58. -[dEDm]) skip_next=yes;; \
  59. -[JT]) skip_next=yes;; \
  60. esac; \
  61. case $$flg in \
  62. *$$target_option*) has_opt=yes; break;; \
  63. esac; \
  64. done; \
  65. test $$has_opt = yes
  66. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  67. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  68. pkgincludedir = $(includedir)/@PACKAGE@
  69. pkglibdir = $(libdir)/@PACKAGE@
  70. pkglibexecdir = $(libexecdir)/@PACKAGE@
  71. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  72. install_sh_DATA = $(install_sh) -c -m 644
  73. install_sh_PROGRAM = $(install_sh) -c
  74. install_sh_SCRIPT = $(install_sh) -c
  75. INSTALL_HEADER = $(INSTALL_DATA)
  76. transform = $(program_transform_name)
  77. NORMAL_INSTALL = :
  78. PRE_INSTALL = :
  79. POST_INSTALL = :
  80. NORMAL_UNINSTALL = :
  81. PRE_UNINSTALL = :
  82. POST_UNINSTALL = :
  83. build_triplet = @build@
  84. host_triplet = @host@
  85. subdir = .
  86. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  87. am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
  88. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  89. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  90. $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
  91. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  92. $(ACLOCAL_M4)
  93. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  94. $(am__configure_deps) $(am__DIST_COMMON)
  95. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  96. configure.lineno config.status.lineno
  97. mkinstalldirs = $(install_sh) -d
  98. CONFIG_HEADER = config.h
  99. CONFIG_CLEAN_FILES =
  100. CONFIG_CLEAN_VPATH_FILES =
  101. AM_V_P = $(am__v_P_@AM_V@)
  102. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  103. am__v_P_0 = false
  104. am__v_P_1 = :
  105. AM_V_GEN = $(am__v_GEN_@AM_V@)
  106. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  107. am__v_GEN_0 = @echo " GEN " $@;
  108. am__v_GEN_1 =
  109. AM_V_at = $(am__v_at_@AM_V@)
  110. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  111. am__v_at_0 = @
  112. am__v_at_1 =
  113. SOURCES =
  114. DIST_SOURCES =
  115. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  116. ctags-recursive dvi-recursive html-recursive info-recursive \
  117. install-data-recursive install-dvi-recursive \
  118. install-exec-recursive install-html-recursive \
  119. install-info-recursive install-pdf-recursive \
  120. install-ps-recursive install-recursive installcheck-recursive \
  121. installdirs-recursive pdf-recursive ps-recursive \
  122. tags-recursive uninstall-recursive
  123. am__can_run_installinfo = \
  124. case $$AM_UPDATE_INFO_DIR in \
  125. n|no|NO) false;; \
  126. *) (install-info --version) >/dev/null 2>&1;; \
  127. esac
  128. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  129. distclean-recursive maintainer-clean-recursive
  130. am__recursive_targets = \
  131. $(RECURSIVE_TARGETS) \
  132. $(RECURSIVE_CLEAN_TARGETS) \
  133. $(am__extra_recursive_targets)
  134. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  135. cscope distdir dist dist-all distcheck
  136. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  137. $(LISP)config.h.in
  138. # Read a list of newline-separated strings from the standard input,
  139. # and print each of them once, without duplicates. Input order is
  140. # *not* preserved.
  141. am__uniquify_input = $(AWK) '\
  142. BEGIN { nonempty = 0; } \
  143. { items[$$0] = 1; nonempty = 1; } \
  144. END { if (nonempty) { for (i in items) print i; }; } \
  145. '
  146. # Make sure the list of sources is unique. This is necessary because,
  147. # e.g., the same source file might be shared among _SOURCES variables
  148. # for different programs/libraries.
  149. am__define_uniq_tagged_files = \
  150. list='$(am__tagged_files)'; \
  151. unique=`for i in $$list; do \
  152. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  153. done | $(am__uniquify_input)`
  154. ETAGS = etags
  155. CTAGS = ctags
  156. CSCOPE = cscope
  157. DIST_SUBDIRS = $(SUBDIRS)
  158. am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
  159. COPYING ChangeLog INSTALL NEWS README TODO compile \
  160. config.guess config.sub depcomp install-sh ltmain.sh missing
  161. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  162. distdir = $(PACKAGE)-$(VERSION)
  163. top_distdir = $(distdir)
  164. am__remove_distdir = \
  165. if test -d "$(distdir)"; then \
  166. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  167. && rm -rf "$(distdir)" \
  168. || { sleep 5 && rm -rf "$(distdir)"; }; \
  169. else :; fi
  170. am__post_remove_distdir = $(am__remove_distdir)
  171. am__relativize = \
  172. dir0=`pwd`; \
  173. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  174. sed_rest='s,^[^/]*/*,,'; \
  175. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  176. sed_butlast='s,/*[^/]*$$,,'; \
  177. while test -n "$$dir1"; do \
  178. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  179. if test "$$first" != "."; then \
  180. if test "$$first" = ".."; then \
  181. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  182. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  183. else \
  184. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  185. if test "$$first2" = "$$first"; then \
  186. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  187. else \
  188. dir2="../$$dir2"; \
  189. fi; \
  190. dir0="$$dir0"/"$$first"; \
  191. fi; \
  192. fi; \
  193. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  194. done; \
  195. reldir="$$dir2"
  196. DIST_ARCHIVES = $(distdir).tar.gz
  197. GZIP_ENV = --best
  198. DIST_TARGETS = dist-gzip
  199. distuninstallcheck_listfiles = find . -type f -print
  200. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  201. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  202. distcleancheck_listfiles = find . -type f -print
  203. pkgdatadir = @pkgdatadir@
  204. ACLOCAL = @ACLOCAL@
  205. AMTAR = @AMTAR@
  206. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  207. AR = @AR@
  208. AUTOCONF = @AUTOCONF@
  209. AUTOHEADER = @AUTOHEADER@
  210. AUTOMAKE = @AUTOMAKE@
  211. AWK = @AWK@
  212. CC = @CC@
  213. CCDEPMODE = @CCDEPMODE@
  214. CFLAGS = @CFLAGS@
  215. CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
  216. CPP = @CPP@
  217. CPPFLAGS = @CPPFLAGS@
  218. CYGPATH_W = @CYGPATH_W@
  219. DEFS = @DEFS@
  220. DEPDIR = @DEPDIR@
  221. DLLTOOL = @DLLTOOL@
  222. DSYMUTIL = @DSYMUTIL@
  223. DUMPBIN = @DUMPBIN@
  224. ECHO_C = @ECHO_C@
  225. ECHO_N = @ECHO_N@
  226. ECHO_T = @ECHO_T@
  227. EGREP = @EGREP@
  228. EXEEXT = @EXEEXT@
  229. FGREP = @FGREP@
  230. GREP = @GREP@
  231. HAVE_VISIBILITY = @HAVE_VISIBILITY@
  232. INSTALL = @INSTALL@
  233. INSTALL_DATA = @INSTALL_DATA@
  234. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  235. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  236. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  237. LD = @LD@
  238. LDFLAGS = @LDFLAGS@
  239. LIBOBJS = @LIBOBJS@
  240. LIBS = @LIBS@
  241. LIBTOOL = @LIBTOOL@
  242. LIPO = @LIPO@
  243. LN_S = @LN_S@
  244. LTLIBOBJS = @LTLIBOBJS@
  245. MAKEINFO = @MAKEINFO@
  246. MANIFEST_TOOL = @MANIFEST_TOOL@
  247. MINGW = @MINGW@
  248. MKDIR_P = @MKDIR_P@
  249. NM = @NM@
  250. NMEDIT = @NMEDIT@
  251. OBJDUMP = @OBJDUMP@
  252. OBJEXT = @OBJEXT@
  253. OTOOL = @OTOOL@
  254. OTOOL64 = @OTOOL64@
  255. PACKAGE = @PACKAGE@
  256. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  257. PACKAGE_NAME = @PACKAGE_NAME@
  258. PACKAGE_STRING = @PACKAGE_STRING@
  259. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  260. PACKAGE_URL = @PACKAGE_URL@
  261. PACKAGE_VERSION = @PACKAGE_VERSION@
  262. PATH_SEPARATOR = @PATH_SEPARATOR@
  263. RANLIB = @RANLIB@
  264. SED = @SED@
  265. SET_MAKE = @SET_MAKE@
  266. SHELL = @SHELL@
  267. STRIP = @STRIP@
  268. VERSION = @VERSION@
  269. WARNINGS = @WARNINGS@
  270. abs_builddir = @abs_builddir@
  271. abs_srcdir = @abs_srcdir@
  272. abs_top_builddir = @abs_top_builddir@
  273. abs_top_srcdir = @abs_top_srcdir@
  274. ac_ct_AR = @ac_ct_AR@
  275. ac_ct_CC = @ac_ct_CC@
  276. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  277. am__include = @am__include@
  278. am__leading_dot = @am__leading_dot@
  279. am__quote = @am__quote@
  280. am__tar = @am__tar@
  281. am__untar = @am__untar@
  282. bindir = @bindir@
  283. build = @build@
  284. build_alias = @build_alias@
  285. build_cpu = @build_cpu@
  286. build_os = @build_os@
  287. build_vendor = @build_vendor@
  288. builddir = @builddir@
  289. datadir = @datadir@
  290. datarootdir = @datarootdir@
  291. docdir = @docdir@
  292. dvidir = @dvidir@
  293. exec_prefix = @exec_prefix@
  294. fsect = @fsect@
  295. host = @host@
  296. host_alias = @host_alias@
  297. host_cpu = @host_cpu@
  298. host_os = @host_os@
  299. host_vendor = @host_vendor@
  300. htmldir = @htmldir@
  301. includedir = @includedir@
  302. infodir = @infodir@
  303. install_sh = @install_sh@
  304. libdir = @libdir@
  305. libexecdir = @libexecdir@
  306. localedir = @localedir@
  307. localstatedir = @localstatedir@
  308. mandir = @mandir@
  309. mkdir_p = @mkdir_p@
  310. oldincludedir = @oldincludedir@
  311. pdfdir = @pdfdir@
  312. prefix = @prefix@
  313. program_transform_name = @program_transform_name@
  314. psdir = @psdir@
  315. sbindir = @sbindir@
  316. sharedstatedir = @sharedstatedir@
  317. srcdir = @srcdir@
  318. sysconfdir = @sysconfdir@
  319. target_alias = @target_alias@
  320. top_build_prefix = @top_build_prefix@
  321. top_builddir = @top_builddir@
  322. top_srcdir = @top_srcdir@
  323. ACLOCAL_AMFLAGS = -I m4
  324. EXTRA_DIST = MAINT
  325. SUBDIRS = src magic tests doc python
  326. all: config.h
  327. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  328. .SUFFIXES:
  329. am--refresh: Makefile
  330. @:
  331. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  332. @for dep in $?; do \
  333. case '$(am__configure_deps)' in \
  334. *$$dep*) \
  335. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  336. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  337. && exit 0; \
  338. exit 1;; \
  339. esac; \
  340. done; \
  341. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  342. $(am__cd) $(top_srcdir) && \
  343. $(AUTOMAKE) --foreign Makefile
  344. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  345. @case '$?' in \
  346. *config.status*) \
  347. echo ' $(SHELL) ./config.status'; \
  348. $(SHELL) ./config.status;; \
  349. *) \
  350. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  351. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  352. esac;
  353. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  354. $(SHELL) ./config.status --recheck
  355. $(top_srcdir)/configure: $(am__configure_deps)
  356. $(am__cd) $(srcdir) && $(AUTOCONF)
  357. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  358. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  359. $(am__aclocal_m4_deps):
  360. config.h: stamp-h1
  361. @test -f $@ || rm -f stamp-h1
  362. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  363. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  364. @rm -f stamp-h1
  365. cd $(top_builddir) && $(SHELL) ./config.status config.h
  366. $(srcdir)/config.h.in: $(am__configure_deps)
  367. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  368. rm -f stamp-h1
  369. touch $@
  370. distclean-hdr:
  371. -rm -f config.h stamp-h1
  372. mostlyclean-libtool:
  373. -rm -f *.lo
  374. clean-libtool:
  375. -rm -rf .libs _libs
  376. distclean-libtool:
  377. -rm -f libtool config.lt
  378. # This directory's subdirectories are mostly independent; you can cd
  379. # into them and run 'make' without going through this Makefile.
  380. # To change the values of 'make' variables: instead of editing Makefiles,
  381. # (1) if the variable is set in 'config.status', edit 'config.status'
  382. # (which will cause the Makefiles to be regenerated when you run 'make');
  383. # (2) otherwise, pass the desired values on the 'make' command line.
  384. $(am__recursive_targets):
  385. @fail=; \
  386. if $(am__make_keepgoing); then \
  387. failcom='fail=yes'; \
  388. else \
  389. failcom='exit 1'; \
  390. fi; \
  391. dot_seen=no; \
  392. target=`echo $@ | sed s/-recursive//`; \
  393. case "$@" in \
  394. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  395. *) list='$(SUBDIRS)' ;; \
  396. esac; \
  397. for subdir in $$list; do \
  398. echo "Making $$target in $$subdir"; \
  399. if test "$$subdir" = "."; then \
  400. dot_seen=yes; \
  401. local_target="$$target-am"; \
  402. else \
  403. local_target="$$target"; \
  404. fi; \
  405. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  406. || eval $$failcom; \
  407. done; \
  408. if test "$$dot_seen" = "no"; then \
  409. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  410. fi; test -z "$$fail"
  411. ID: $(am__tagged_files)
  412. $(am__define_uniq_tagged_files); mkid -fID $$unique
  413. tags: tags-recursive
  414. TAGS: tags
  415. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  416. set x; \
  417. here=`pwd`; \
  418. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  419. include_option=--etags-include; \
  420. empty_fix=.; \
  421. else \
  422. include_option=--include; \
  423. empty_fix=; \
  424. fi; \
  425. list='$(SUBDIRS)'; for subdir in $$list; do \
  426. if test "$$subdir" = .; then :; else \
  427. test ! -f $$subdir/TAGS || \
  428. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  429. fi; \
  430. done; \
  431. $(am__define_uniq_tagged_files); \
  432. shift; \
  433. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  434. test -n "$$unique" || unique=$$empty_fix; \
  435. if test $$# -gt 0; then \
  436. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  437. "$$@" $$unique; \
  438. else \
  439. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  440. $$unique; \
  441. fi; \
  442. fi
  443. ctags: ctags-recursive
  444. CTAGS: ctags
  445. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  446. $(am__define_uniq_tagged_files); \
  447. test -z "$(CTAGS_ARGS)$$unique" \
  448. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  449. $$unique
  450. GTAGS:
  451. here=`$(am__cd) $(top_builddir) && pwd` \
  452. && $(am__cd) $(top_srcdir) \
  453. && gtags -i $(GTAGS_ARGS) "$$here"
  454. cscope: cscope.files
  455. test ! -s cscope.files \
  456. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  457. clean-cscope:
  458. -rm -f cscope.files
  459. cscope.files: clean-cscope cscopelist
  460. cscopelist: cscopelist-recursive
  461. cscopelist-am: $(am__tagged_files)
  462. list='$(am__tagged_files)'; \
  463. case "$(srcdir)" in \
  464. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  465. *) sdir=$(subdir)/$(srcdir) ;; \
  466. esac; \
  467. for i in $$list; do \
  468. if test -f "$$i"; then \
  469. echo "$(subdir)/$$i"; \
  470. else \
  471. echo "$$sdir/$$i"; \
  472. fi; \
  473. done >> $(top_builddir)/cscope.files
  474. distclean-tags:
  475. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  476. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  477. distdir: $(DISTFILES)
  478. $(am__remove_distdir)
  479. test -d "$(distdir)" || mkdir "$(distdir)"
  480. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  481. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  482. list='$(DISTFILES)'; \
  483. dist_files=`for file in $$list; do echo $$file; done | \
  484. sed -e "s|^$$srcdirstrip/||;t" \
  485. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  486. case $$dist_files in \
  487. */*) $(MKDIR_P) `echo "$$dist_files" | \
  488. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  489. sort -u` ;; \
  490. esac; \
  491. for file in $$dist_files; do \
  492. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  493. if test -d $$d/$$file; then \
  494. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  495. if test -d "$(distdir)/$$file"; then \
  496. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  497. fi; \
  498. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  499. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  500. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  501. fi; \
  502. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  503. else \
  504. test -f "$(distdir)/$$file" \
  505. || cp -p $$d/$$file "$(distdir)/$$file" \
  506. || exit 1; \
  507. fi; \
  508. done
  509. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  510. if test "$$subdir" = .; then :; else \
  511. $(am__make_dryrun) \
  512. || test -d "$(distdir)/$$subdir" \
  513. || $(MKDIR_P) "$(distdir)/$$subdir" \
  514. || exit 1; \
  515. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  516. $(am__relativize); \
  517. new_distdir=$$reldir; \
  518. dir1=$$subdir; dir2="$(top_distdir)"; \
  519. $(am__relativize); \
  520. new_top_distdir=$$reldir; \
  521. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  522. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  523. ($(am__cd) $$subdir && \
  524. $(MAKE) $(AM_MAKEFLAGS) \
  525. top_distdir="$$new_top_distdir" \
  526. distdir="$$new_distdir" \
  527. am__remove_distdir=: \
  528. am__skip_length_check=: \
  529. am__skip_mode_fix=: \
  530. distdir) \
  531. || exit 1; \
  532. fi; \
  533. done
  534. -test -n "$(am__skip_mode_fix)" \
  535. || find "$(distdir)" -type d ! -perm -755 \
  536. -exec chmod u+rwx,go+rx {} \; -o \
  537. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  538. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  539. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  540. || chmod -R a+r "$(distdir)"
  541. dist-gzip: distdir
  542. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  543. $(am__post_remove_distdir)
  544. dist-bzip2: distdir
  545. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  546. $(am__post_remove_distdir)
  547. dist-lzip: distdir
  548. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  549. $(am__post_remove_distdir)
  550. dist-xz: distdir
  551. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  552. $(am__post_remove_distdir)
  553. dist-tarZ: distdir
  554. @echo WARNING: "Support for distribution archives compressed with" \
  555. "legacy program 'compress' is deprecated." >&2
  556. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  557. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  558. $(am__post_remove_distdir)
  559. dist-shar: distdir
  560. @echo WARNING: "Support for shar distribution archives is" \
  561. "deprecated." >&2
  562. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  563. shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
  564. $(am__post_remove_distdir)
  565. dist-zip: distdir
  566. -rm -f $(distdir).zip
  567. zip -rq $(distdir).zip $(distdir)
  568. $(am__post_remove_distdir)
  569. dist dist-all:
  570. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  571. $(am__post_remove_distdir)
  572. # This target untars the dist file and tries a VPATH configuration. Then
  573. # it guarantees that the distribution is self-contained by making another
  574. # tarfile.
  575. distcheck: dist
  576. case '$(DIST_ARCHIVES)' in \
  577. *.tar.gz*) \
  578. GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
  579. *.tar.bz2*) \
  580. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  581. *.tar.lz*) \
  582. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  583. *.tar.xz*) \
  584. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  585. *.tar.Z*) \
  586. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  587. *.shar.gz*) \
  588. GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
  589. *.zip*) \
  590. unzip $(distdir).zip ;;\
  591. esac
  592. chmod -R a-w $(distdir)
  593. chmod u+w $(distdir)
  594. mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
  595. chmod a-w $(distdir)
  596. test -d $(distdir)/_build || exit 0; \
  597. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  598. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  599. && am__cwd=`pwd` \
  600. && $(am__cd) $(distdir)/_build/sub \
  601. && ../../configure \
  602. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  603. $(DISTCHECK_CONFIGURE_FLAGS) \
  604. --srcdir=../.. --prefix="$$dc_install_base" \
  605. && $(MAKE) $(AM_MAKEFLAGS) \
  606. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  607. && $(MAKE) $(AM_MAKEFLAGS) check \
  608. && $(MAKE) $(AM_MAKEFLAGS) install \
  609. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  610. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  611. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  612. distuninstallcheck \
  613. && chmod -R a-w "$$dc_install_base" \
  614. && ({ \
  615. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  616. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  617. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  618. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  619. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  620. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  621. && rm -rf "$$dc_destdir" \
  622. && $(MAKE) $(AM_MAKEFLAGS) dist \
  623. && rm -rf $(DIST_ARCHIVES) \
  624. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  625. && cd "$$am__cwd" \
  626. || exit 1
  627. $(am__post_remove_distdir)
  628. @(echo "$(distdir) archives ready for distribution: "; \
  629. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  630. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  631. distuninstallcheck:
  632. @test -n '$(distuninstallcheck_dir)' || { \
  633. echo 'ERROR: trying to run $@ with an empty' \
  634. '$$(distuninstallcheck_dir)' >&2; \
  635. exit 1; \
  636. }; \
  637. $(am__cd) '$(distuninstallcheck_dir)' || { \
  638. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  639. exit 1; \
  640. }; \
  641. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  642. || { echo "ERROR: files left after uninstall:" ; \
  643. if test -n "$(DESTDIR)"; then \
  644. echo " (check DESTDIR support)"; \
  645. fi ; \
  646. $(distuninstallcheck_listfiles) ; \
  647. exit 1; } >&2
  648. distcleancheck: distclean
  649. @if test '$(srcdir)' = . ; then \
  650. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  651. exit 1 ; \
  652. fi
  653. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  654. || { echo "ERROR: files left in build directory after distclean:" ; \
  655. $(distcleancheck_listfiles) ; \
  656. exit 1; } >&2
  657. check-am: all-am
  658. check: check-recursive
  659. all-am: Makefile config.h
  660. installdirs: installdirs-recursive
  661. installdirs-am:
  662. install: install-recursive
  663. install-exec: install-exec-recursive
  664. install-data: install-data-recursive
  665. uninstall: uninstall-recursive
  666. install-am: all-am
  667. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  668. installcheck: installcheck-recursive
  669. install-strip:
  670. if test -z '$(STRIP)'; then \
  671. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  672. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  673. install; \
  674. else \
  675. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  676. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  677. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  678. fi
  679. mostlyclean-generic:
  680. clean-generic:
  681. distclean-generic:
  682. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  683. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  684. maintainer-clean-generic:
  685. @echo "This command is intended for maintainers to use"
  686. @echo "it deletes files that may require special tools to rebuild."
  687. clean: clean-recursive
  688. clean-am: clean-generic clean-libtool mostlyclean-am
  689. distclean: distclean-recursive
  690. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  691. -rm -f Makefile
  692. distclean-am: clean-am distclean-generic distclean-hdr \
  693. distclean-libtool distclean-tags
  694. dvi: dvi-recursive
  695. dvi-am:
  696. html: html-recursive
  697. html-am:
  698. info: info-recursive
  699. info-am:
  700. install-data-am:
  701. install-dvi: install-dvi-recursive
  702. install-dvi-am:
  703. install-exec-am:
  704. install-html: install-html-recursive
  705. install-html-am:
  706. install-info: install-info-recursive
  707. install-info-am:
  708. install-man:
  709. install-pdf: install-pdf-recursive
  710. install-pdf-am:
  711. install-ps: install-ps-recursive
  712. install-ps-am:
  713. installcheck-am:
  714. maintainer-clean: maintainer-clean-recursive
  715. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  716. -rm -rf $(top_srcdir)/autom4te.cache
  717. -rm -f Makefile
  718. maintainer-clean-am: distclean-am maintainer-clean-generic
  719. mostlyclean: mostlyclean-recursive
  720. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  721. pdf: pdf-recursive
  722. pdf-am:
  723. ps: ps-recursive
  724. ps-am:
  725. uninstall-am:
  726. .MAKE: $(am__recursive_targets) all install-am install-strip
  727. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  728. am--refresh check check-am clean clean-cscope clean-generic \
  729. clean-libtool cscope cscopelist-am ctags ctags-am dist \
  730. dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
  731. dist-xz dist-zip distcheck distclean distclean-generic \
  732. distclean-hdr distclean-libtool distclean-tags distcleancheck \
  733. distdir distuninstallcheck dvi dvi-am html html-am info \
  734. info-am install install-am install-data install-data-am \
  735. install-dvi install-dvi-am install-exec install-exec-am \
  736. install-html install-html-am install-info install-info-am \
  737. install-man install-pdf install-pdf-am install-ps \
  738. install-ps-am install-strip installcheck installcheck-am \
  739. installdirs installdirs-am maintainer-clean \
  740. maintainer-clean-generic mostlyclean mostlyclean-generic \
  741. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  742. uninstall-am
  743. .PRECIOUS: Makefile
  744. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  745. # Otherwise a system limit (for SysV at least) may be exceeded.
  746. .NOEXPORT: