亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? depcomp

?? MPEG-4編解碼的實(shí)現(xiàn)(包括MPEG4視音頻編解碼)
??
字號(hào):
#! /bin/sh

# depcomp - compile a program generating dependencies as side-effects
# Copyright 1999, 2000 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.

# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.

# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.

if test -z "$depmode" || test -z "$source" || test -z "$object"; then
  echo "depcomp: Variables source, object and depmode must be set" 1>&2
  exit 1
fi
# `libtool' can also be set to `yes' or `no'.

depfile=${depfile-`echo "$object" | sed 's,\([^/]*\)$,.deps/\1,;s/\.\([^.]*\)$/.P\1/'`}
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}

rm -f "$tmpdepfile"

# Some modes work just like other modes, but use different flags.  We
# parameterize here, but still list the modes in the big case below,
# to make depend.m4 easier to write.  Note that we *cannot* use a case
# here, because this file can only contain one case statement.
if test "$depmode" = hp; then
  # HP compiler uses -M and no extra arg.
  gccflag=-M
  depmode=gcc
fi

if test "$depmode" = dashXmstdout; then
   # This is just like dashmstdout with a different argument.
   dashmflag=-xM
   depmode=dashmstdout
fi

case "$depmode" in
gcc3)
## gcc 3 implements dependency tracking that does exactly what
## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like
## it if -MD -MP comes after the -MF stuff.  Hmm.
  "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
  stat=$?
  if test $stat -eq 0; then :
  else
    rm -f "$tmpdepfile"
    exit $stat
  fi
  mv "$tmpdepfile" "$depfile"
  ;;

gcc)
## There are various ways to get dependency output from gcc.  Here's
## why we pick this rather obscure method:
## - Don't want to use -MD because we'd like the dependencies to end
##   up in a subdir.  Having to rename by hand is ugly.
##   (We might end up doing this anyway to support other compilers.)
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
##   -MM, not -M (despite what the docs say).
## - Using -M directly means running the compiler twice (even worse
##   than renaming).
  if test -z "$gccflag"; then
    gccflag=-MD,
  fi
  "$@" -Wp,"$gccflag$tmpdepfile"
  stat=$?
  if test $stat -eq 0; then :
  else
    rm -f "$tmpdepfile"
    exit $stat
  fi
  rm -f "$depfile"
  echo "$object : \\" > "$depfile"
  alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
## The second -e expression handles DOS-style file names with drive letters.
  sed -e 's/^[^:]*: / /' \
      -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
## This next piece of magic avoids the `deleted header file' problem.
## The problem is that when a header file which appears in a .P file
## is deleted, the dependency causes make to die (because there is
## typically no way to rebuild the header).  We avoid this by adding
## dummy dependencies for each header file.  Too bad gcc doesn't do
## this for us directly.
  tr ' ' '
' < "$tmpdepfile" |
## Some versions of gcc put a space before the `:'.  On the theory
## that the space means something, we add a space to the output as
## well.
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly.  Breaking it into two sed invocations is a workaround.
    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
  rm -f "$tmpdepfile"
  ;;

hp)
  # This case exists only to let depend.m4 do its work.  It works by
  # looking at the text of this script.  This case will never be run,
  # since it is checked for above.
  exit 1
  ;;

sgi)
  if test "$libtool" = yes; then
    "$@" "-Wp,-MDupdate,$tmpdepfile"
  else
    "$@" -MDupdate "$tmpdepfile"
  fi
  stat=$?
  if test $stat -eq 0; then :
  else
    rm -f "$tmpdepfile"
    exit $stat
  fi
  rm -f "$depfile"

  if test -f "$tmpdepfile"; then  # yes, the sourcefile depend on other files
    echo "$object : \\" > "$depfile"

    # Clip off the initial element (the dependent).  Don't try to be
    # clever and replace this with sed code, as IRIX sed won't handle
    # lines with more than a fixed number of characters (4096 in
    # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;
    # the IRIX cc adds comments like `#:fec' to the end of the
    # dependency line.
    tr ' ' '
' < "$tmpdepfile" \
    | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
    tr '
' ' ' >> $depfile
    echo >> $depfile

    # The second pass generates a dummy entry for each header file.
    tr ' ' '
' < "$tmpdepfile" \
   | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
   >> $depfile
  else
    # The sourcefile does not contain any dependencies, so just
    # store a dummy comment line, to avoid errors with the Makefile
    # "include basename.Plo" scheme.
    echo "#dummy" > "$depfile"
  fi
  rm -f "$tmpdepfile"
  ;;

aix)
  # The C for AIX Compiler uses -M and outputs the dependencies
  # in a .u file.  This file always lives in the current directory.
  # Also, the AIX compiler puts `$object:' at the start of each line;
  # $object doesn't have directory information.
  stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'`
  tmpdepfile="$stripped.u"
  outname="$stripped.o"
  if test "$libtool" = yes; then
    "$@" -Wc,-M
  else
    "$@" -M
  fi

  stat=$?
  if test $stat -eq 0; then :
  else
    rm -f "$tmpdepfile"
    exit $stat
  fi

  if test -f "$tmpdepfile"; then
    # Each line is of the form `foo.o: dependent.h'.
    # Do two passes, one to just change these to
    # `$object: dependent.h' and one to simply `dependent.h:'.
    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
    sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
  else
    # The sourcefile does not contain any dependencies, so just
    # store a dummy comment line, to avoid errors with the Makefile
    # "include basename.Plo" scheme.
    echo "#dummy" > "$depfile"
  fi
  rm -f "$tmpdepfile"
  ;;

tru64)
   # The Tru64 AIX compiler uses -MD to generate dependencies as a side
   # effect.  `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
   # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put 
   # dependencies in `foo.d' instead, so we check for that too.
   # Subdirectories are respected.

   tmpdepfile1="$object.d"
   tmpdepfile2=`echo "$object" | sed -e 's/.o$/.d/'` 
   if test "$libtool" = yes; then
      "$@" -Wc,-MD
   else
      "$@" -MD
   fi

   stat=$?
   if test $stat -eq 0; then :
   else
      rm -f "$tmpdepfile1" "$tmpdepfile2"
      exit $stat
   fi

   if test -f "$tmpdepfile1"; then
      tmpdepfile="$tmpdepfile1"
   else
      tmpdepfile="$tmpdepfile2"
   fi
   if test -f "$tmpdepfile"; then
      sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
      # That's a space and a tab in the [].
      sed -e 's,^.*\.[a-z]*:[ 	]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
   else
      echo "#dummy" > "$depfile"
   fi
   rm -f "$tmpdepfile"
   ;;

#nosideeffect)
  # This comment above is used by automake to tell side-effect
  # dependency tracking mechanisms from slower ones.

dashmstdout)
  # Important note: in order to support this mode, a compiler *must*
  # always write the proprocessed file to stdout, regardless of -o,
  # because we must use -o when running libtool.
  test -z "$dashmflag" && dashmflag=-M
  ( IFS=" "
    case " $* " in
    *" --mode=compile "*) # this is libtool, let us make it quiet
      for arg
      do # cycle over the arguments
        case "$arg" in
	"--mode=compile")
	  # insert --quiet before "--mode=compile"
	  set fnord "$@" --quiet
	  shift # fnord
	  ;;
	esac
	set fnord "$@" "$arg"
	shift # fnord
	shift # "$arg"
      done
      ;;
    esac
    "$@" $dashmflag | sed 's:^[^:]*\:[ 	]*:'"$object"'\: :' > "$tmpdepfile"
  ) &
  proc=$!
  "$@"
  stat=$?
  wait "$proc"
  if test "$stat" != 0; then exit $stat; fi
  rm -f "$depfile"
  cat < "$tmpdepfile" > "$depfile"
  tr ' ' '
' < "$tmpdepfile" | \
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly.  Breaking it into two sed invocations is a workaround.
    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
  rm -f "$tmpdepfile"
  ;;

dashXmstdout)
  # This case only exists to satisfy depend.m4.  It is never actually
  # run, as this mode is specially recognized in the preamble.
  exit 1
  ;;

makedepend)
  # X makedepend
  (
    shift
    cleared=no
    for arg in "$@"; do
      case $cleared in no)
        set ""; shift
	cleared=yes
      esac
      case "$arg" in
        -D*|-I*)
	  set fnord "$@" "$arg"; shift;;
	-*)
	  ;;
	*)
	  set fnord "$@" "$arg"; shift;;
      esac
    done
    obj_suffix="`echo $object | sed 's/^.*\././'`"
    touch "$tmpdepfile"
    ${MAKEDEPEND-makedepend} 2>/dev/null -o"$obj_suffix" -f"$tmpdepfile" "$@"
  ) &
  proc=$!
  "$@"
  stat=$?
  wait "$proc"
  if test "$stat" != 0; then exit $stat; fi
  rm -f "$depfile"
  cat < "$tmpdepfile" > "$depfile"
  tail +3 "$tmpdepfile" | tr ' ' '
' | \
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly.  Breaking it into two sed invocations is a workaround.
    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
  rm -f "$tmpdepfile" "$tmpdepfile".bak
  ;;

cpp)
  # Important note: in order to support this mode, a compiler *must*
  # always write the proprocessed file to stdout, regardless of -o,
  # because we must use -o when running libtool.
  ( IFS=" "
    case " $* " in
    *" --mode=compile "*)
      for arg
      do # cycle over the arguments
        case $arg in
	"--mode=compile")
	  # insert --quiet before "--mode=compile"
	  set fnord "$@" --quiet
	  shift # fnord
	  ;;
	esac
	set fnord "$@" "$arg"
	shift # fnord
	shift # "$arg"
      done
      ;;
    esac
    "$@" -E |
    sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
    sed '$ s: \\$::' > "$tmpdepfile"
  ) &
  proc=$!
  "$@"
  stat=$?
  wait "$proc"
  if test "$stat" != 0; then exit $stat; fi
  rm -f "$depfile"
  echo "$object : \\" > "$depfile"
  cat < "$tmpdepfile" >> "$depfile"
  sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
  rm -f "$tmpdepfile"
  ;;

msvisualcpp)
  # Important note: in order to support this mode, a compiler *must*
  # always write the proprocessed file to stdout, regardless of -o,
  # because we must use -o when running libtool.
  ( IFS=" "
    case " $* " in
    *" --mode=compile "*)
      for arg
      do # cycle over the arguments
        case $arg in
	"--mode=compile")
	  # insert --quiet before "--mode=compile"
	  set fnord "$@" --quiet
	  shift # fnord
	  ;;
	esac
	set fnord "$@" "$arg"
	shift # fnord
	shift # "$arg"
      done
      ;;
    esac
    "$@" -E |
    sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
  ) &
  proc=$!
  "$@"
  stat=$?
  wait "$proc"
  if test "$stat" != 0; then exit $stat; fi
  rm -f "$depfile"
  echo "$object : \\" > "$depfile"
  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
  echo "	" >> "$depfile"
  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
  rm -f "$tmpdepfile"
  ;;

none)
  exec "$@"
  ;;

*)
  echo "Unknown depmode $depmode" 1>&2
  exit 1
  ;;
esac

exit 0

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av一区二| 久久久久国产精品人| 色综合天天综合在线视频| 色偷偷一区二区三区| 欧美老女人在线| 精品一区二区三区的国产在线播放| 2014亚洲片线观看视频免费| 日韩一本二本av| 久久久久九九视频| 欧美国产激情二区三区 | 91精品国产色综合久久ai换脸 | 精品一区中文字幕| 欧美α欧美αv大片| 亚洲精品一区二区三区四区高清 | 色婷婷激情综合| 欧美日韩一级黄| 久久久久久毛片| 亚洲专区一二三| 成人av小说网| 色域天天综合网| 日本不卡免费在线视频| 奇米色一区二区三区四区| 成人午夜视频免费看| 在线看一区二区| 国产亚洲欧美中文| 亚洲亚洲人成综合网络| 国产米奇在线777精品观看| 在线亚洲免费视频| 亚洲欧洲制服丝袜| 91久久香蕉国产日韩欧美9色| 国产成人av福利| 亚洲大片免费看| 爽爽淫人综合网网站| 91亚洲精品久久久蜜桃网站| 一二三区精品福利视频| 九九视频精品免费| 欧美一级xxx| 日韩国产精品大片| 欧美日韩免费不卡视频一区二区三区 | 成人午夜精品在线| 午夜久久久影院| 精品久久一区二区三区| 久久精品一区蜜桃臀影院| 日韩国产欧美三级| 欧美一区二区三区影视| 青青草原综合久久大伊人精品 | 精品国产一区二区精华| 国产一区二区主播在线| 精品成人一区二区三区四区| 中文字幕欧美一区| 亚洲国产中文字幕在线视频综合| 色94色欧美sute亚洲13| 亚洲精品一二三区| 欧美高清性hdvideosex| 免费视频一区二区| 久久久久久电影| 色老汉一区二区三区| 91久久精品日日躁夜夜躁欧美| 亚洲一本大道在线| 综合久久久久久久| 国产精品久久久爽爽爽麻豆色哟哟| 欧美va亚洲va香蕉在线| 日本不卡123| 日本乱人伦aⅴ精品| 不卡一区二区在线| 成人中文字幕合集| 国产精品国产成人国产三级| 蜜臀av一区二区在线观看| 国产午夜精品一区二区三区视频| 91色.com| 免费观看在线综合色| 日韩欧美不卡一区| 一本色道**综合亚洲精品蜜桃冫| 韩国成人在线视频| 麻豆高清免费国产一区| 亚洲图片自拍偷拍| 亚欧色一区w666天堂| 一区二区三区高清不卡| 亚洲色图欧美激情| 亚洲视频一二三区| 亚洲人123区| 一区二区日韩av| 亚洲精品高清在线| 午夜精品久久久久久久久| 亚洲一卡二卡三卡四卡五卡| 一区二区三区加勒比av| 亚洲成人av一区二区三区| 午夜私人影院久久久久| 日韩精品成人一区二区三区| 日本不卡视频在线| 国产美女精品在线| 成人国产免费视频| 一本大道av一区二区在线播放| 91精品国产一区二区人妖| 成人午夜视频网站| 欧美日韩久久一区| 91麻豆精品91久久久久久清纯| 欧美一区二区不卡视频| ww久久中文字幕| 中文字幕亚洲电影| 亚洲国产成人va在线观看天堂| 蜜臀av一区二区| 成人美女视频在线观看| 欧美日韩国产系列| 久久婷婷色综合| 亚洲精品日韩专区silk| 青青草国产精品97视觉盛宴| 成人免费毛片嘿嘿连载视频| 欧美色爱综合网| 欧美国产在线观看| 日韩av在线发布| 99久久亚洲一区二区三区青草| 337p亚洲精品色噜噜狠狠| 国产精品免费丝袜| 免费观看在线色综合| 色诱视频网站一区| 久久女同性恋中文字幕| 一区二区三区波多野结衣在线观看| 精品一区二区三区久久| 一本大道久久a久久综合| 欧美电视剧免费全集观看| 欧美一区二区三区电影| 欧美专区日韩专区| 制服丝袜亚洲色图| 欧美变态tickle挠乳网站| 国产三级三级三级精品8ⅰ区| 精久久久久久久久久久| 国产精品一区二区久激情瑜伽 | 99在线视频精品| 99久久精品久久久久久清纯| 91香蕉国产在线观看软件| 色综合视频一区二区三区高清| 国产成人精品网址| 成人a区在线观看| 欧美丝袜第三区| 51精品秘密在线观看| 国产亚洲一区二区三区在线观看 | 亚洲天堂福利av| 一本大道久久a久久精品综合| 亚洲一区二区三区四区中文字幕| 一本大道av伊人久久综合| 亚洲一二三四在线| 欧美成人精品福利| 成人手机在线视频| 亚洲国产视频一区| 日韩精品专区在线影院观看| 国产成人综合视频| 亚洲黄色免费网站| 精品久久久三级丝袜| 久热成人在线视频| 欧美日韩亚洲综合| 亚洲444eee在线观看| 在线观看日韩高清av| 亚洲裸体xxx| 色综合久久久久网| 国产精品一区久久久久| 欧美一区永久视频免费观看| 日日夜夜精品视频免费 | 精品美女在线观看| 国产在线不卡一卡二卡三卡四卡| 欧美va日韩va| 国产一区美女在线| 亚洲国产精品国自产拍av| 色婷婷综合久久久中文一区二区| 亚洲欧美另类久久久精品2019| 一本一道综合狠狠老| 一级精品视频在线观看宜春院| 欧美视频完全免费看| 精品一区二区三区免费观看| 国产日韩欧美不卡在线| 99久久精品国产一区| 日韩国产欧美在线播放| 久久精品在线观看| 欧美日韩在线播放一区| 国产乱子轮精品视频| 亚洲色图在线播放| 日韩欧美不卡在线观看视频| 97se亚洲国产综合在线| 日韩成人免费电影| 中文字幕久久午夜不卡| 91精品一区二区三区在线观看| 国产成人自拍网| 日本一区中文字幕| 亚洲四区在线观看| 国产三级久久久| 日韩午夜精品电影| 在线亚洲高清视频| 成人黄色在线视频| 国产毛片精品国产一区二区三区| 亚洲一区二区三区视频在线播放| 久久久综合九色合综国产精品| 在线一区二区视频| 99免费精品在线观看| 久草中文综合在线| 男女激情视频一区| 三级久久三级久久| 石原莉奈一区二区三区在线观看| 国产精品初高中害羞小美女文| 日韩一级免费一区| 欧美日韩国产综合久久|