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

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

?? depcomp

?? USB Host 開發中支持數碼相機的源碼。即Picture To Picture協議的完整實現
??
字號:
#! /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一区二区三区免费野_久草精品视频
久久久久久久久久久久久久久99 | 国产欧美日韩综合| 日韩精品成人一区二区三区| 欧美欧美欧美欧美| 另类欧美日韩国产在线| 久久久久99精品国产片| 不卡在线视频中文字幕| 午夜a成v人精品| 欧美视频日韩视频| 久久精品国产精品亚洲综合| 国产亚洲欧美一级| 欧美午夜理伦三级在线观看| 日本最新不卡在线| 亚洲美女视频在线| 久久久久久免费毛片精品| 91小视频在线观看| 狠狠网亚洲精品| 亚洲视频资源在线| 久久综合给合久久狠狠狠97色69| 波波电影院一区二区三区| 看国产成人h片视频| 亚洲国产毛片aaaaa无费看| 国产欧美一区视频| 日韩精品一区在线观看| 欧美精品精品一区| 一本久久综合亚洲鲁鲁五月天| 激情六月婷婷综合| 日本vs亚洲vs韩国一区三区| 午夜一区二区三区在线观看| 亚洲欧美一区二区三区国产精品| 精品嫩草影院久久| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 欧美激情一区三区| 精品日韩一区二区| 精品福利一区二区三区| 日韩一级黄色片| 精品国产一区二区三区久久影院| 91黄色激情网站| 欧美日韩国产成人在线91| 欧美男女性生活在线直播观看| 99re这里都是精品| 欧美亚洲愉拍一区二区| 精品视频一区二区不卡| 欧美一区二区三区视频免费播放| 在线电影国产精品| 久久久久久久精| 成人免费小视频| 免费成人av资源网| 91在线观看下载| 欧美精三区欧美精三区| 久久久www免费人成精品| 国产伦精一区二区三区| 人人爽香蕉精品| 综合色中文字幕| 夜夜嗨av一区二区三区四季av| 日本aⅴ精品一区二区三区| 欧美日韩精品一区二区三区四区| 一个色在线综合| 欧美α欧美αv大片| 青青草精品视频| 日韩欧美一二三区| 国产精品自在欧美一区| 久久色.com| 国产人伦精品一区二区| 日本不卡一二三区黄网| 在线观看视频91| 久久久久久久久久电影| 亚洲精品国产a久久久久久 | 欧美日韩一区三区| 一本到不卡免费一区二区| 一区二区三区中文在线观看| 欧美日韩亚洲另类| 亚洲六月丁香色婷婷综合久久| 久久免费看少妇高潮| 国内久久婷婷综合| 色一情一伦一子一伦一区| 国产精品乱人伦| 亚洲综合在线第一页| 色噜噜偷拍精品综合在线| 国产精品乱码久久久久久| 亚洲欧美日韩久久精品| 日本韩国精品在线| 国产精品无人区| 99视频一区二区| 欧美日韩精品欧美日韩精品一综合| 国产91精品免费| 国产精品美女久久久久av爽李琼| 一区二区三区视频在线观看| 国产一区二区三区在线观看精品| 欧美精品三级日韩久久| 99re66热这里只有精品3直播 | 亚洲激情六月丁香| 国产精品丝袜91| 国产精品乱码妇女bbbb| 国产日韩欧美a| 久久精品视频在线看| 麻豆一区二区三| 亚洲另类春色校园小说| 精品国产sm最大网站| 欧美午夜精品一区二区三区| 韩国中文字幕2020精品| 视频一区欧美日韩| 中文字幕色av一区二区三区| 精品国产成人在线影院| 欧美日韩免费电影| 精品91自产拍在线观看一区| 成人一区二区三区| 日本成人在线电影网| 欧美一区二区精品久久911| 蜜臀精品久久久久久蜜臀| 欧美大片一区二区| 国产麻豆视频精品| 午夜视频在线观看一区| 不卡视频在线观看| 久久99国产精品尤物| 日韩在线播放一区二区| 一区二区三区精品在线| 亚洲色图在线视频| 亚洲午夜免费视频| 一区二区三区欧美在线观看| 一区二区三区不卡视频在线观看| 国产精品久久久久久亚洲伦 | 国产一区在线观看视频| 国内久久婷婷综合| 99国产精品久久久| 色欧美日韩亚洲| 日韩欧美国产综合| 欧美—级在线免费片| 亚洲综合丁香婷婷六月香| 天天操天天干天天综合网| 精品在线播放午夜| 欧美日韩一区国产| 欧美96一区二区免费视频| 国产精品蜜臀av| 91精品欧美综合在线观看最新| 亚洲尤物视频在线| 国产精品久久久爽爽爽麻豆色哟哟| 日韩免费视频一区二区| 日韩欧美国产综合一区| 国产免费成人在线视频| 亚洲自拍偷拍网站| 粉嫩av一区二区三区在线播放 | 视频一区在线播放| 偷拍与自拍一区| 国产精品美女久久久久av爽李琼 | 国产日韩一级二级三级| 欧美mv日韩mv亚洲| 欧美精品一区二区三区在线播放| 在线这里只有精品| 久久久.com| 免费看日韩精品| 6080国产精品一区二区| 一区二区欧美在线观看| 99视频一区二区| 136国产福利精品导航| 国产a视频精品免费观看| 精品少妇一区二区三区在线播放| 亚洲一卡二卡三卡四卡五卡| 99精品国产热久久91蜜凸| 亚洲国产精品v| 成人精品视频一区| 亚洲精选一二三| 欧美色图12p| 最新国产精品久久精品| 色婷婷综合久久久久中文一区二区| 日本一区二区三区电影| 色综合久久久久网| 亚洲卡通动漫在线| 欧美一区二区女人| 韩日av一区二区| 亚洲精品高清在线观看| 欧美日韩成人在线| 国产福利一区二区三区在线视频| 中文久久乱码一区二区| 欧美视频你懂的| 国产精品自拍一区| 亚洲成av人片在线| 国产欧美日韩在线视频| 日本精品一级二级| 狠狠久久亚洲欧美| 一区二区三区在线高清| 欧美不卡一区二区三区四区| 成熟亚洲日本毛茸茸凸凹| 美女视频第一区二区三区免费观看网站 | 91网上在线视频| 久久se精品一区精品二区| 国产精品色哟哟| 制服.丝袜.亚洲.另类.中文| 高清在线观看日韩| 久久国产视频网| 亚洲一区二区在线观看视频| 国产精品免费丝袜| 久久久久国产免费免费| 精品免费日韩av| 日韩欧美国产精品| 9191国产精品| 日韩欧美二区三区| 日韩欧美成人一区| 欧美成人伊人久久综合网| 91精品国产乱码久久蜜臀|