"Fossies" - the Fresh Open Source Software Archive

Member "alsa-oss-1.1.8/Makefile.in" (7 Jan 2019, 23923 Bytes) of package /linux/misc/alsa-oss-1.1.8.tar.bz2:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

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