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

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

?? depcomp

?? exosip
??
字號:
#! /bin/sh# depcomp - compile a program generating dependencies as side-effectsscriptversion=2004-04-25.13# Copyright (C) 1999, 2000, 2003, 2004 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>.case $1 in  '')     echo "$0: No command.  Try \`$0 --help' for more information." 1>&2     exit 1;     ;;  -h | --h*)    cat <<\EOFUsage: depcomp [--help] [--version] PROGRAM [ARGS]Run PROGRAMS ARGS to compile a file, generating dependenciesas side-effects.Environment variables:  depmode     Dependency tracking mode.  source      Source file read by `PROGRAMS ARGS'.  object      Object file output by `PROGRAMS ARGS'.  depfile     Dependency file to output.  tmpdepfile  Temporary file to use when outputing dependencies.  libtool     Whether libtool is used (yes/no).Report bugs to <bug-automake@gnu.org>.EOF    exit 0    ;;  -v | --v*)    echo "depcomp $scriptversion"    exit 0    ;;esacif test -z "$depmode" || test -z "$source" || test -z "$object"; then  echo "depcomp: Variables source, object and depmode must be set" 1>&2  exit 1fi# `libtool' can also be set to `yes' or `no'.if test -z "$depfile"; then   base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`   dir=`echo "$object" | sed 's,/.*$,/,'`   if test "$dir" = "$object"; then      dir=   fi   # FIXME: should be _deps on DOS.   depfile="$dir.deps/$base"fitmpdepfile=${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=gccfiif test "$depmode" = dashXmstdout; then   # This is just like dashmstdout with a different argument.   dashmflag=-xM   depmode=dashmstdoutficase "$depmode" ingcc3)## 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.  In older versions, 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.  # Version 6 uses the directory in both cases.  stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`  tmpdepfile="$stripped.u"  if test "$libtool" = yes; then    "$@" -Wc,-M  else    "$@" -M  fi  stat=$?  if test -f "$tmpdepfile"; then :  else    stripped=`echo "$stripped" | sed 's,^.*/,,'`    tmpdepfile="$stripped.u"  fi  if test $stat -eq 0; then :  else    rm -f "$tmpdepfile"    exit $stat  fi  if test -f "$tmpdepfile"; then    outname="$stripped.o"    # 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"  ;;icc)  # Intel's C compiler understands `-MD -MF file'.  However on  #    icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c  # ICC 7.0 will fill foo.d with something like  #    foo.o: sub/foo.c  #    foo.o: sub/foo.h  # which is wrong.  We want:  #    sub/foo.o: sub/foo.c  #    sub/foo.o: sub/foo.h  #    sub/foo.c:  #    sub/foo.h:  # ICC 7.1 will output  #    foo.o: sub/foo.c sub/foo.h  # and will wrap long lines using \ :  #    foo.o: sub/foo.c ... \  #     sub/foo.h ... \  #     ...  "$@" -MD -MF "$tmpdepfile"  stat=$?  if test $stat -eq 0; then :  else    rm -f "$tmpdepfile"    exit $stat  fi  rm -f "$depfile"  # Each line is of the form `foo.o: dependent.h',  # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.  # Do two passes, one to just change these to  # `$object: dependent.h' and one to simply `dependent.h:'.  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"  # Some versions of the HPUX 10.20 sed can't process this invocation  # correctly.  Breaking it into two sed invocations is a workaround.  sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |    sed -e 's/$/ :/' >> "$depfile"  rm -f "$tmpdepfile"  ;;tru64)   # The Tru64 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.   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`   test "x$dir" = "x$object" && dir=   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`   if test "$libtool" = yes; then      # Dependencies are output in .lo.d with libtool 1.4.      # They are output in .o.d with libtool 1.5.      tmpdepfile1="$dir.libs/$base.lo.d"      tmpdepfile2="$dir.libs/$base.o.d"      tmpdepfile3="$dir.libs/$base.d"      "$@" -Wc,-MD   else      tmpdepfile1="$dir$base.o.d"      tmpdepfile2="$dir$base.d"      tmpdepfile3="$dir$base.d"      "$@" -MD   fi   stat=$?   if test $stat -eq 0; then :   else      rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"      exit $stat   fi   if test -f "$tmpdepfile1"; then      tmpdepfile="$tmpdepfile1"   elif test -f "$tmpdepfile2"; then      tmpdepfile="$tmpdepfile2"   else      tmpdepfile="$tmpdepfile3"   fi   if test -f "$tmpdepfile"; then      sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"      # That's a tab and a space 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 preprocessed file to stdout, regardless of -o.  "$@" || exit $?  # Remove the call to Libtool.  if test "$libtool" = yes; then    while test $1 != '--mode=compile'; do      shift    done    shift  fi  # Remove `-o $object'.  IFS=" "  for arg  do    case $arg in    -o)      shift      ;;    $object)      shift      ;;    *)      set fnord "$@" "$arg"      shift # fnord      shift # $arg      ;;    esac  done  test -z "$dashmflag" && dashmflag=-M  # Require at least two characters before searching for `:'  # in the target name.  This is to cope with DOS-style filenames:  # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.  "$@" $dashmflag |    sed 's:^[  ]*[^: ][^:][^:]*\:[    ]*:'"$object"'\: :' > "$tmpdepfile"  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)  "$@" || exit $?  # Remove any Libtool call  if test "$libtool" = yes; then    while test $1 != '--mode=compile'; do      shift    done    shift  fi  # 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 ;;    # Strip any option that makedepend may not understand.  Remove    # the object too, otherwise makedepend will parse it as a source file.    -*|$object)      ;;    *)      set fnord "$@" "$arg"; shift ;;    esac  done  obj_suffix="`echo $object | sed 's/^.*\././'`"  touch "$tmpdepfile"  ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"  rm -f "$depfile"  cat < "$tmpdepfile" > "$depfile"  sed '1,2d' "$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 preprocessed file to stdout.  "$@" || exit $?  # Remove the call to Libtool.  if test "$libtool" = yes; then    while test $1 != '--mode=compile'; do      shift    done    shift  fi  # Remove `-o $object'.  IFS=" "  for arg  do    case $arg in    -o)      shift      ;;    $object)      shift      ;;    *)      set fnord "$@" "$arg"      shift # fnord      shift # $arg      ;;    esac  done  "$@" -E |    sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |    sed '$ s: \\$::' > "$tmpdepfile"  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 preprocessed file to stdout, regardless of -o,  # because we must use -o when running libtool.  "$@" || exit $?  IFS=" "  for arg  do    case "$arg" in    "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")	set fnord "$@"	shift	shift	;;    *)	set fnord "$@" "$arg"	shift	shift	;;    esac  done  "$@" -E |  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"  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  ;;esacexit 0# Local Variables:# mode: shell-script# sh-indentation: 2# eval: (add-hook 'write-file-hooks 'time-stamp)# time-stamp-start: "scriptversion="# time-stamp-format: "%:y-%02m-%02d.%02H"# time-stamp-end: "$"# End:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
美腿丝袜在线亚洲一区| 亚洲成av人片在线| 一区二区三区欧美视频| 男人操女人的视频在线观看欧美| 国产一区二区视频在线播放| 欧美亚洲丝袜传媒另类| 国产婷婷一区二区| 免费视频一区二区| 欧美亚洲高清一区| 中文字幕中文字幕在线一区| 久久成人免费网| 欧美乱妇20p| 亚洲欧美二区三区| 风间由美性色一区二区三区| 欧美一区二区人人喊爽| 亚洲午夜在线电影| 95精品视频在线| 亚洲国产高清aⅴ视频| 国内一区二区视频| 欧美一区二区成人| 日本在线不卡视频一二三区| 欧美性大战久久久久久久| 中文字幕av一区二区三区高| 国产精品正在播放| 久久免费视频一区| 精品影视av免费| 日韩精品一区二区在线| 日韩专区中文字幕一区二区| 欧美午夜精品久久久久久孕妇| 中文字幕中文在线不卡住| 成人免费观看男女羞羞视频| 久久夜色精品国产噜噜av| 蜜桃久久久久久久| 欧美一卡二卡在线观看| 日韩和欧美的一区| 6080午夜不卡| 久久国产麻豆精品| 欧美一区二区性放荡片| 日本亚洲三级在线| 日韩精品一区二区在线| 国产一区二区三区在线看麻豆| 日韩视频在线永久播放| 久久机这里只有精品| 日韩精品一区二区三区三区免费| 免费成人av在线播放| 精品国偷自产国产一区| 国产在线精品不卡| 日本一区二区成人| 一本久久a久久免费精品不卡| 亚洲少妇30p| 欧美体内she精视频| 日韩福利视频网| 欧美xxx久久| 国产精品66部| 亚洲三级视频在线观看| 色屁屁一区二区| 日韩国产欧美一区二区三区| 精品国产精品一区二区夜夜嗨 | 欧美一区二区黄色| 久久国产精品99精品国产| 久久精品夜色噜噜亚洲a∨| av一本久道久久综合久久鬼色| 亚洲特级片在线| 欧美一区二区福利在线| 国产91丝袜在线播放0| 亚洲精品视频在线观看网站| 欧美一区午夜视频在线观看 | 日韩女优av电影| 成人午夜激情片| 亚洲成a人v欧美综合天堂下载| 日韩精品在线一区| 91浏览器打开| 九九九久久久精品| 亚洲伦理在线免费看| 日韩小视频在线观看专区| 白白色 亚洲乱淫| 免费久久99精品国产| 国产精品久久久久aaaa| 欧美一区二区大片| 91福利区一区二区三区| 国产乱码精品一品二品| 一区二区日韩av| 欧美激情在线观看视频免费| 欧美二区三区91| 99热99精品| 韩国精品主播一区二区在线观看| 一区二区三区小说| 国产日韩v精品一区二区| 欧美久久免费观看| 99精品久久只有精品| 精品一区二区三区在线播放视频| 亚洲视频小说图片| 欧美极品aⅴ影院| 欧美大片在线观看一区| 精品视频免费在线| 色综合网站在线| 粉嫩av一区二区三区粉嫩| 免费成人av在线播放| 亚洲国产精品久久人人爱| 欧美激情一区二区三区| 日韩久久精品一区| 91精品麻豆日日躁夜夜躁| 色综合久久88色综合天天| 国产·精品毛片| 国产一区二三区| 久久精品国产77777蜜臀| 日韩精品成人一区二区在线| 一区二区三区中文在线观看| 亚洲特级片在线| 亚洲欧洲日产国产综合网| 国产日韩成人精品| 国产日韩精品一区| 国产午夜精品久久| 久久青草国产手机看片福利盒子 | 色94色欧美sute亚洲线路二| 成人国产视频在线观看| 粉嫩一区二区三区在线看| 成人白浆超碰人人人人| 成人高清av在线| 91丝袜呻吟高潮美腿白嫩在线观看| 成人综合日日夜夜| 菠萝蜜视频在线观看一区| 成人福利视频在线| 色综合久久久久综合体桃花网| 99久久99精品久久久久久| 91在线无精精品入口| 91香蕉视频黄| 91传媒视频在线播放| 欧美日韩亚洲综合| 日韩三级在线免费观看| www国产精品av| 国产欧美一区二区精品性色| 中文字幕综合网| 亚洲成人精品一区二区| 青青草原综合久久大伊人精品| 日本午夜精品一区二区三区电影 | 亚洲色欲色欲www| 亚洲永久精品国产| 日韩和欧美一区二区| 久久国产精品露脸对白| 成人免费视频视频在线观看免费 | 亚洲免费在线播放| 午夜精品aaa| 国产麻豆精品久久一二三| av资源网一区| 正在播放一区二区| 久久久一区二区三区捆绑**| 日韩理论电影院| 日韩高清一区二区| 粉嫩aⅴ一区二区三区四区五区| 91麻豆国产精品久久| 欧美精选一区二区| 日本一二三四高清不卡| 亚洲综合免费观看高清完整版 | 国产精品18久久久久久久网站| eeuss国产一区二区三区| 欧美日韩久久久久久| 久久久久久久久久久黄色| 亚洲人成伊人成综合网小说| 日本不卡中文字幕| 91在线视频网址| 日韩区在线观看| 亚洲精品一二三四区| 激情文学综合丁香| 欧美婷婷六月丁香综合色| 久久精品一区二区三区不卡| 亚洲成人激情av| www.日韩在线| 精品国产青草久久久久福利| 亚洲夂夂婷婷色拍ww47| 国产激情视频一区二区三区欧美 | www.亚洲激情.com| 日韩精品在线看片z| 一区二区在线观看免费| 国产精品亚洲人在线观看| 欧美日韩国产首页| 亚洲欧美另类小说视频| 国产激情视频一区二区在线观看 | 91伊人久久大香线蕉| 2020国产精品| 蜜臀久久99精品久久久久久9| 99re在线精品| 中文字幕乱码久久午夜不卡| 久久国产综合精品| 日韩一区二区三区四区| 一区二区免费在线播放| 成人av在线资源网| 久久九九久精品国产免费直播| 日韩精品一卡二卡三卡四卡无卡| 91啪亚洲精品| 亚洲女同一区二区| 99精品一区二区| 亚洲视频一区二区免费在线观看| 高清成人免费视频| 国产亚洲精品久| 国产精品69毛片高清亚洲| 久久午夜老司机| 国产一区二区免费看| 精品99久久久久久| 国产精品综合久久|