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

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

?? depcomp

?? It is a chm file viewer lib with source code
??
字號:
#! /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 1fi# `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=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.  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  ;;esacexit 0

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区成人在线视频| 国产精品久久看| 免费欧美高清视频| 欧美一区二区三区白人| 久久不见久久见免费视频1| 久久日一线二线三线suv| 国产高清一区日本| 国产精品第四页| 欧洲av在线精品| 男人的天堂久久精品| 亚洲精品一线二线三线| 成人久久视频在线观看| 亚洲乱码日产精品bd| 欧美高清激情brazzers| 寂寞少妇一区二区三区| 国产三级三级三级精品8ⅰ区| 精品少妇一区二区三区日产乱码| 免播放器亚洲一区| 欧美国产欧美综合| 91麻豆精品秘密| 三级亚洲高清视频| 久久精品一级爱片| 色成年激情久久综合| 日韩黄色免费电影| 国产精品久久久一本精品| 日本大香伊一区二区三区| 日本女优在线视频一区二区| 久久久久久久精| 在线观看亚洲a| 韩国毛片一区二区三区| 亚洲欧美另类久久久精品| 日韩欧美中文字幕一区| 99国产精品国产精品毛片| 免费av网站大全久久| 亚洲欧洲三级电影| 精品区一区二区| 在线看日韩精品电影| 久久99精品久久久久婷婷| 樱花影视一区二区| 亚洲国产精品v| 欧美成人一区二区三区在线观看| 色综合色综合色综合色综合色综合 | 99精品久久久久久| 蜜桃av一区二区| 一区二区成人在线| 国产精品久久99| 精品福利二区三区| 9191国产精品| 色妹子一区二区| 成人午夜精品在线| 国产麻豆一精品一av一免费| 三级欧美在线一区| 亚洲综合免费观看高清完整版| www国产成人| 欧美成人综合网站| 欧美一卡二卡在线| 欧美综合一区二区三区| 99久精品国产| 不卡一区中文字幕| 国产一区二区三区在线观看免费视频 | 在线观看网站黄不卡| www.av精品| 成人一级片在线观看| 国产麻豆日韩欧美久久| 经典三级一区二区| 另类小说图片综合网| 日韩电影在线观看网站| 亚洲国产综合色| 一区二区三区影院| 亚洲精品久久久蜜桃| 国产精品电影院| 国产精品成人午夜| 中文字幕在线观看一区二区| 中文字幕乱码日本亚洲一区二区| 精品国产sm最大网站免费看| 日韩精品专区在线| 欧美成va人片在线观看| 日韩欧美电影一二三| 日韩一区二区视频| 精品乱人伦小说| 久久亚洲综合色一区二区三区| 日韩片之四级片| 日韩欧美三级在线| 久久久久久久久久久黄色| 精品99久久久久久| 久久久电影一区二区三区| 国产亚洲精品久| 国产精品不卡在线观看| 亚洲人成影院在线观看| 有码一区二区三区| 丝袜美腿亚洲色图| 激情另类小说区图片区视频区| 韩国成人福利片在线播放| 国产精品一区二区不卡| 成人黄色小视频| 色哟哟一区二区| 欧美三级电影在线看| 欧美一区二区三区系列电影| 精品国产成人在线影院 | 国产一区福利在线| 国产98色在线|日韩| 99国产精品久久久久久久久久| 色成人在线视频| 日韩一级免费观看| 欧美激情一二三区| 亚洲一区二区视频在线| 久热成人在线视频| 不卡的av在线| 欧美一区二区三区免费大片| 久久久国产精品麻豆| 亚洲激情中文1区| 日韩国产一二三区| 成人激情免费网站| 88在线观看91蜜桃国自产| 久久嫩草精品久久久久| 一区二区三区在线视频观看| 男男视频亚洲欧美| 99久久免费视频.com| 在线91免费看| 中文字幕在线一区免费| 日韩综合小视频| 不卡在线观看av| 欧美xxxxx裸体时装秀| 亚洲精品国产a久久久久久 | 欧美性感一区二区三区| 久久综合国产精品| 亚洲国产cao| 成人免费毛片片v| 欧美一区三区四区| 亚洲欧美国产毛片在线| 激情五月播播久久久精品| 欧美中文字幕一区二区三区| 久久久久久久久久久久久女国产乱| 亚洲自拍另类综合| 国产v日产∨综合v精品视频| 欧美喷水一区二区| 最新欧美精品一区二区三区| 久草精品在线观看| 在线国产亚洲欧美| 国产精品三级av| 麻豆国产欧美一区二区三区| 在线亚洲一区观看| 1区2区3区欧美| 国产高清不卡一区| 精品国产伦一区二区三区观看方式| 亚洲国产精品影院| 99re视频这里只有精品| 国产亚洲精品资源在线26u| 蜜桃在线一区二区三区| 欧美午夜在线一二页| 自拍偷拍国产精品| 大白屁股一区二区视频| 精品国精品国产| 六月丁香婷婷色狠狠久久| 欧美精品丝袜中出| 亚洲成av人片观看| 欧美三级电影在线观看| 亚洲综合在线五月| 色系网站成人免费| 日韩毛片高清在线播放| 成人app软件下载大全免费| 国产片一区二区| 成人激情视频网站| 国产精品婷婷午夜在线观看| 国产在线播放一区二区三区 | 国产日韩欧美精品在线| 久久99精品国产麻豆不卡| 在线综合视频播放| 日韩av在线播放中文字幕| 欧美另类久久久品| 日韩精品一二三区| 日韩一区二区在线观看视频| 乱一区二区av| 精品国产免费一区二区三区香蕉| 激情久久五月天| 国产偷国产偷亚洲高清人白洁| 国产黑丝在线一区二区三区| 国产欧美精品国产国产专区| 成人一级黄色片| 亚洲欧美国产高清| 在线不卡的av| 激情图区综合网| 国产日韩欧美精品在线| 99精品欧美一区| 亚欧色一区w666天堂| 欧美日韩国产首页| 韩国女主播一区| 亚洲欧洲日韩在线| 欧美三片在线视频观看| 麻豆精品久久精品色综合| 久久久亚洲综合| 91网站最新网址| 三级一区在线视频先锋 | 亚洲欧美激情插| 欧美欧美午夜aⅴ在线观看| 看电影不卡的网站| 国产精品乱码久久久久久| 在线观看一区二区视频| 毛片一区二区三区| 国产精品私房写真福利视频|