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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? depcomp

?? 視頻音頻編碼程序 視頻音頻編碼程序 視頻音頻編碼程序
??
字號:
#! /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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产美女娇喘av呻吟久久| 亚洲18女电影在线观看| 亚洲成av人片在www色猫咪| 成人99免费视频| 久久综合色之久久综合| 毛片不卡一区二区| 日韩欧美国产一二三区| 蜜臀av一区二区| 精品av综合导航| 国产高清久久久| 国产精品的网站| 99国产精品99久久久久久| 亚洲日本电影在线| 精品污污网站免费看| 亚洲成a人v欧美综合天堂| 欧美一区二区三区男人的天堂| 日韩国产欧美在线观看| 精品国产一区二区精华| 国产精品一区二区你懂的| 中文成人av在线| 色偷偷88欧美精品久久久| 日韩一区中文字幕| 欧美日韩大陆在线| 国产一区二区三区香蕉| 国产精品久久久久久亚洲毛片| 精品久久人人做人人爰| 韩日欧美一区二区三区| 欧美国产日产图区| 欧美日韩成人在线| 国产在线精品一区二区| 亚洲理论在线观看| 日韩女优av电影在线观看| 丰满少妇久久久久久久| 亚洲国产精品久久人人爱| 日韩欧美亚洲另类制服综合在线| 国产米奇在线777精品观看| 一区二区欧美国产| www久久精品| 欧美亚洲综合网| 国产精品一二一区| 亚洲成a人v欧美综合天堂| 欧美激情一区二区三区蜜桃视频 | 日韩福利视频网| 久久蜜桃av一区精品变态类天堂 | 免费亚洲电影在线| 国产精品国产三级国产普通话三级| 色欧美88888久久久久久影院| 麻豆国产一区二区| 亚洲一区二区精品视频| 欧美高清在线一区二区| 久久综合九色欧美综合狠狠| 欧美日韩国产首页在线观看| 色综合一区二区三区| 成人小视频在线| 国产91丝袜在线观看| 欧美日韩日日摸| 99精品久久只有精品| 国产精品99久久久久久久女警| 日韩中文字幕av电影| 中文字幕亚洲精品在线观看| 欧美丰满一区二区免费视频| 成人亚洲一区二区一| 美腿丝袜一区二区三区| 亚洲欧美激情视频在线观看一区二区三区 | 久久se这里有精品| 一区二区三区高清不卡| 国产精品婷婷午夜在线观看| 日韩欧美的一区| 在线精品视频一区二区| 成人一区在线看| 久久精品国产秦先生| 亚洲一级二级在线| 亚洲青青青在线视频| 国产亚洲综合在线| 日韩色在线观看| 欧美性大战久久久久久久| 99riav一区二区三区| 国产成人精品三级麻豆| 国产在线观看一区二区| 奇米亚洲午夜久久精品| 日韩高清一级片| 奇米影视一区二区三区| 蜜桃av一区二区在线观看| 日本在线不卡一区| 日本视频免费一区| 美女一区二区在线观看| 青青草原综合久久大伊人精品 | 91同城在线观看| av一二三不卡影片| 成人高清视频在线| jizz一区二区| 色综合天天综合色综合av| 91啪亚洲精品| www.日韩大片| 在线免费观看日韩欧美| 欧美在线你懂的| 欧美丰满嫩嫩电影| 日韩欧美二区三区| 久久色在线观看| 国产精品麻豆久久久| 亚洲欧洲精品一区二区三区不卡| 自拍av一区二区三区| 亚洲网友自拍偷拍| 日韩高清在线观看| 国产真实乱子伦精品视频| 韩国av一区二区三区四区| 国产成人综合自拍| 91丨九色丨国产丨porny| 欧美三级视频在线观看| 欧美大片拔萝卜| 国产女主播一区| 一区二区三区产品免费精品久久75| 亚洲一区成人在线| 久久99热这里只有精品| 成人av先锋影音| 欧美日韩午夜精品| 精品国产一区二区三区久久久蜜月 | 99久久久精品| 欧美日韩一区二区在线观看 | 8x8x8国产精品| www.欧美精品一二区| 国产乱子伦视频一区二区三区 | 午夜电影一区二区三区| 亚洲123区在线观看| 日韩国产欧美在线播放| 国产综合色视频| 色av成人天堂桃色av| 日韩一级二级三级| 亚洲色图丝袜美腿| 九九视频精品免费| 欧美性生活久久| 久久久www免费人成精品| 亚洲国产日韩一级| 成人午夜又粗又硬又大| 在线播放亚洲一区| 亚洲日本韩国一区| 国产高清成人在线| 91精品国产aⅴ一区二区| 亚洲日本丝袜连裤袜办公室| 国产在线播放一区三区四| 在线观看一区二区视频| 国产欧美一区二区精品性色| 手机精品视频在线观看| 91日韩一区二区三区| 日本一区免费视频| 美国毛片一区二区| 91精品欧美久久久久久动漫| 亚洲免费av观看| 国产69精品久久777的优势| 678五月天丁香亚洲综合网| 亚洲免费三区一区二区| 国产剧情一区在线| 欧美日韩在线不卡| 亚洲毛片av在线| 国产毛片精品一区| 777亚洲妇女| 中文字幕日本不卡| 久久精品国产免费看久久精品| 欧美性猛交xxxx乱大交退制版 | 久久综合精品国产一区二区三区 | 91精品福利在线| 国产精品妹子av| 国产福利一区二区三区在线视频| 日韩精品一区二区三区在线| 亚洲图片欧美视频| 99久久精品国产精品久久| 久久精品视频免费| 国产精品99久久久久久久女警 | 精品国产免费久久| 精品一二三四在线| 久久先锋资源网| 国产美女视频91| 久久免费偷拍视频| 青青草97国产精品免费观看无弹窗版| 欧洲在线/亚洲| 中文字幕一区二区三区在线播放 | 麻豆视频一区二区| 欧美成人三级在线| 国产一区二区三区在线观看免费| 久久久99精品免费观看不卡| 高清不卡在线观看| 亚洲视频精选在线| 91精品国产手机| 国产成人亚洲综合a∨婷婷图片| 日韩视频不卡中文| 免费观看成人av| 欧美电视剧在线看免费| 成人毛片视频在线观看| 亚洲一二三级电影| 欧美一区二区免费视频| 亚洲超丰满肉感bbw| 精品福利av导航| 一本大道综合伊人精品热热| 亚洲国产综合人成综合网站| 欧美精品亚洲一区二区在线播放| 精品制服美女丁香| 久久久久国产精品厨房| 成人福利视频网站| 亚洲一区二区三区免费视频| 2020日本不卡一区二区视频|