Blame depcomp

Packit aa0600
#!/bin/sh
Packit aa0600
# depcomp - compile a program generating dependencies as side-effects
Packit aa0600
Packit aa0600
scriptversion=2016-01-11.22; # UTC
Packit aa0600
Packit aa0600
# Copyright (C) 1999-2017 Free Software Foundation, Inc.
Packit aa0600
Packit aa0600
# This program is free software; you can redistribute it and/or modify
Packit aa0600
# it under the terms of the GNU General Public License as published by
Packit aa0600
# the Free Software Foundation; either version 2, or (at your option)
Packit aa0600
# any later version.
Packit aa0600
Packit aa0600
# This program is distributed in the hope that it will be useful,
Packit aa0600
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aa0600
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit aa0600
# GNU General Public License for more details.
Packit aa0600
Packit aa0600
# You should have received a copy of the GNU General Public License
Packit aa0600
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit aa0600
Packit aa0600
# As a special exception to the GNU General Public License, if you
Packit aa0600
# distribute this file as part of a program that contains a
Packit aa0600
# configuration script generated by Autoconf, you may include it under
Packit aa0600
# the same distribution terms that you use for the rest of that program.
Packit aa0600
Packit aa0600
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
Packit aa0600
Packit aa0600
case $1 in
Packit aa0600
  '')
Packit aa0600
    echo "$0: No command.  Try '$0 --help' for more information." 1>&2
Packit aa0600
    exit 1;
Packit aa0600
    ;;
Packit aa0600
  -h | --h*)
Packit aa0600
    cat <<\EOF
Packit aa0600
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
Packit aa0600
Packit aa0600
Run PROGRAMS ARGS to compile a file, generating dependencies
Packit aa0600
as side-effects.
Packit aa0600
Packit aa0600
Environment variables:
Packit aa0600
  depmode     Dependency tracking mode.
Packit aa0600
  source      Source file read by 'PROGRAMS ARGS'.
Packit aa0600
  object      Object file output by 'PROGRAMS ARGS'.
Packit aa0600
  DEPDIR      directory where to store dependencies.
Packit aa0600
  depfile     Dependency file to output.
Packit aa0600
  tmpdepfile  Temporary file to use when outputting dependencies.
Packit aa0600
  libtool     Whether libtool is used (yes/no).
Packit aa0600
Packit aa0600
Report bugs to <bug-automake@gnu.org>.
Packit aa0600
EOF
Packit aa0600
    exit $?
Packit aa0600
    ;;
Packit aa0600
  -v | --v*)
Packit aa0600
    echo "depcomp $scriptversion"
Packit aa0600
    exit $?
Packit aa0600
    ;;
Packit aa0600
esac
Packit aa0600
Packit aa0600
# Get the directory component of the given path, and save it in the
Packit aa0600
# global variables '$dir'.  Note that this directory component will
Packit aa0600
# be either empty or ending with a '/' character.  This is deliberate.
Packit aa0600
set_dir_from ()
Packit aa0600
{
Packit aa0600
  case $1 in
Packit aa0600
    */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
Packit aa0600
      *) dir=;;
Packit aa0600
  esac
Packit aa0600
}
Packit aa0600
Packit aa0600
# Get the suffix-stripped basename of the given path, and save it the
Packit aa0600
# global variable '$base'.
Packit aa0600
set_base_from ()
Packit aa0600
{
Packit aa0600
  base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
Packit aa0600
}
Packit aa0600
Packit aa0600
# If no dependency file was actually created by the compiler invocation,
Packit aa0600
# we still have to create a dummy depfile, to avoid errors with the
Packit aa0600
# Makefile "include basename.Plo" scheme.
Packit aa0600
make_dummy_depfile ()
Packit aa0600
{
Packit aa0600
  echo "#dummy" > "$depfile"
Packit aa0600
}
Packit aa0600
Packit aa0600
# Factor out some common post-processing of the generated depfile.
Packit aa0600
# Requires the auxiliary global variable '$tmpdepfile' to be set.
Packit aa0600
aix_post_process_depfile ()
Packit aa0600
{
Packit aa0600
  # If the compiler actually managed to produce a dependency file,
Packit aa0600
  # post-process it.
Packit aa0600
  if test -f "$tmpdepfile"; then
Packit aa0600
    # Each line is of the form 'foo.o: dependency.h'.
Packit aa0600
    # Do two passes, one to just change these to
Packit aa0600
    #   $object: dependency.h
Packit aa0600
    # and one to simply output
Packit aa0600
    #   dependency.h:
Packit aa0600
    # which is needed to avoid the deleted-header problem.
Packit aa0600
    { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
Packit aa0600
      sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
Packit aa0600
    } > "$depfile"
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
  else
Packit aa0600
    make_dummy_depfile
Packit aa0600
  fi
Packit aa0600
}
Packit aa0600
Packit aa0600
# A tabulation character.
Packit aa0600
tab='	'
Packit aa0600
# A newline character.
Packit aa0600
nl='
Packit aa0600
'
Packit aa0600
# Character ranges might be problematic outside the C locale.
Packit aa0600
# These definitions help.
Packit aa0600
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
Packit aa0600
lower=abcdefghijklmnopqrstuvwxyz
Packit aa0600
digits=0123456789
Packit aa0600
alpha=${upper}${lower}
Packit aa0600
Packit aa0600
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
Packit aa0600
  echo "depcomp: Variables source, object and depmode must be set" 1>&2
Packit aa0600
  exit 1
Packit aa0600
fi
Packit aa0600
Packit aa0600
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
Packit aa0600
depfile=${depfile-`echo "$object" |
Packit aa0600
  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
Packit aa0600
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
Packit aa0600
Packit aa0600
rm -f "$tmpdepfile"
Packit aa0600
Packit aa0600
# Avoid interferences from the environment.
Packit aa0600
gccflag= dashmflag=
Packit aa0600
Packit aa0600
# Some modes work just like other modes, but use different flags.  We
Packit aa0600
# parameterize here, but still list the modes in the big case below,
Packit aa0600
# to make depend.m4 easier to write.  Note that we *cannot* use a case
Packit aa0600
# here, because this file can only contain one case statement.
Packit aa0600
if test "$depmode" = hp; then
Packit aa0600
  # HP compiler uses -M and no extra arg.
Packit aa0600
  gccflag=-M
Packit aa0600
  depmode=gcc
Packit aa0600
fi
Packit aa0600
Packit aa0600
if test "$depmode" = dashXmstdout; then
Packit aa0600
  # This is just like dashmstdout with a different argument.
Packit aa0600
  dashmflag=-xM
Packit aa0600
  depmode=dashmstdout
Packit aa0600
fi
Packit aa0600
Packit aa0600
cygpath_u="cygpath -u -f -"
Packit aa0600
if test "$depmode" = msvcmsys; then
Packit aa0600
  # This is just like msvisualcpp but w/o cygpath translation.
Packit aa0600
  # Just convert the backslash-escaped backslashes to single forward
Packit aa0600
  # slashes to satisfy depend.m4
Packit aa0600
  cygpath_u='sed s,\\\\,/,g'
Packit aa0600
  depmode=msvisualcpp
Packit aa0600
fi
Packit aa0600
Packit aa0600
if test "$depmode" = msvc7msys; then
Packit aa0600
  # This is just like msvc7 but w/o cygpath translation.
Packit aa0600
  # Just convert the backslash-escaped backslashes to single forward
Packit aa0600
  # slashes to satisfy depend.m4
Packit aa0600
  cygpath_u='sed s,\\\\,/,g'
Packit aa0600
  depmode=msvc7
Packit aa0600
fi
Packit aa0600
Packit aa0600
if test "$depmode" = xlc; then
Packit aa0600
  # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
Packit aa0600
  gccflag=-qmakedep=gcc,-MF
Packit aa0600
  depmode=gcc
Packit aa0600
fi
Packit aa0600
Packit aa0600
case "$depmode" in
Packit aa0600
gcc3)
Packit aa0600
## gcc 3 implements dependency tracking that does exactly what
Packit aa0600
## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like
Packit aa0600
## it if -MD -MP comes after the -MF stuff.  Hmm.
Packit aa0600
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
Packit aa0600
## the command line argument order; so add the flags where they
Packit aa0600
## appear in depend2.am.  Note that the slowdown incurred here
Packit aa0600
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
Packit aa0600
  for arg
Packit aa0600
  do
Packit aa0600
    case $arg in
Packit aa0600
    -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
Packit aa0600
    *)  set fnord "$@" "$arg" ;;
Packit aa0600
    esac
Packit aa0600
    shift # fnord
Packit aa0600
    shift # $arg
Packit aa0600
  done
Packit aa0600
  "$@"
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
  mv "$tmpdepfile" "$depfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
gcc)
Packit aa0600
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
Packit aa0600
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
Packit aa0600
## (see the conditional assignment to $gccflag above).
Packit aa0600
## There are various ways to get dependency output from gcc.  Here's
Packit aa0600
## why we pick this rather obscure method:
Packit aa0600
## - Don't want to use -MD because we'd like the dependencies to end
Packit aa0600
##   up in a subdir.  Having to rename by hand is ugly.
Packit aa0600
##   (We might end up doing this anyway to support other compilers.)
Packit aa0600
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
Packit aa0600
##   -MM, not -M (despite what the docs say).  Also, it might not be
Packit aa0600
##   supported by the other compilers which use the 'gcc' depmode.
Packit aa0600
## - Using -M directly means running the compiler twice (even worse
Packit aa0600
##   than renaming).
Packit aa0600
  if test -z "$gccflag"; then
Packit aa0600
    gccflag=-MD,
Packit aa0600
  fi
Packit aa0600
  "$@" -Wp,"$gccflag$tmpdepfile"
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  echo "$object : \\" > "$depfile"
Packit aa0600
  # The second -e expression handles DOS-style file names with drive
Packit aa0600
  # letters.
Packit aa0600
  sed -e 's/^[^:]*: / /' \
Packit aa0600
      -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
Packit aa0600
## This next piece of magic avoids the "deleted header file" problem.
Packit aa0600
## The problem is that when a header file which appears in a .P file
Packit aa0600
## is deleted, the dependency causes make to die (because there is
Packit aa0600
## typically no way to rebuild the header).  We avoid this by adding
Packit aa0600
## dummy dependencies for each header file.  Too bad gcc doesn't do
Packit aa0600
## this for us directly.
Packit aa0600
## Some versions of gcc put a space before the ':'.  On the theory
Packit aa0600
## that the space means something, we add a space to the output as
Packit aa0600
## well.  hp depmode also adds that space, but also prefixes the VPATH
Packit aa0600
## to the object.  Take care to not repeat it in the output.
Packit aa0600
## Some versions of the HPUX 10.20 sed can't process this invocation
Packit aa0600
## correctly.  Breaking it into two sed invocations is a workaround.
Packit aa0600
  tr ' ' "$nl" < "$tmpdepfile" \
Packit aa0600
    | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
Packit aa0600
    | sed -e 's/$/ :/' >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
hp)
Packit aa0600
  # This case exists only to let depend.m4 do its work.  It works by
Packit aa0600
  # looking at the text of this script.  This case will never be run,
Packit aa0600
  # since it is checked for above.
Packit aa0600
  exit 1
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
sgi)
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    "$@" "-Wp,-MDupdate,$tmpdepfile"
Packit aa0600
  else
Packit aa0600
    "$@" -MDupdate "$tmpdepfile"
Packit aa0600
  fi
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
  rm -f "$depfile"
Packit aa0600
Packit aa0600
  if test -f "$tmpdepfile"; then  # yes, the sourcefile depend on other files
Packit aa0600
    echo "$object : \\" > "$depfile"
Packit aa0600
    # Clip off the initial element (the dependent).  Don't try to be
Packit aa0600
    # clever and replace this with sed code, as IRIX sed won't handle
Packit aa0600
    # lines with more than a fixed number of characters (4096 in
Packit aa0600
    # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;
Packit aa0600
    # the IRIX cc adds comments like '#:fec' to the end of the
Packit aa0600
    # dependency line.
Packit aa0600
    tr ' ' "$nl" < "$tmpdepfile" \
Packit aa0600
      | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
Packit aa0600
      | tr "$nl" ' ' >> "$depfile"
Packit aa0600
    echo >> "$depfile"
Packit aa0600
    # The second pass generates a dummy entry for each header file.
Packit aa0600
    tr ' ' "$nl" < "$tmpdepfile" \
Packit aa0600
      | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
Packit aa0600
      >> "$depfile"
Packit aa0600
  else
Packit aa0600
    make_dummy_depfile
Packit aa0600
  fi
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
xlc)
Packit aa0600
  # This case exists only to let depend.m4 do its work.  It works by
Packit aa0600
  # looking at the text of this script.  This case will never be run,
Packit aa0600
  # since it is checked for above.
Packit aa0600
  exit 1
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
aix)
Packit aa0600
  # The C for AIX Compiler uses -M and outputs the dependencies
Packit aa0600
  # in a .u file.  In older versions, this file always lives in the
Packit aa0600
  # current directory.  Also, the AIX compiler puts '$object:' at the
Packit aa0600
  # start of each line; $object doesn't have directory information.
Packit aa0600
  # Version 6 uses the directory in both cases.
Packit aa0600
  set_dir_from "$object"
Packit aa0600
  set_base_from "$object"
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    tmpdepfile1=$dir$base.u
Packit aa0600
    tmpdepfile2=$base.u
Packit aa0600
    tmpdepfile3=$dir.libs/$base.u
Packit aa0600
    "$@" -Wc,-M
Packit aa0600
  else
Packit aa0600
    tmpdepfile1=$dir$base.u
Packit aa0600
    tmpdepfile2=$dir$base.u
Packit aa0600
    tmpdepfile3=$dir$base.u
Packit aa0600
    "$@" -M
Packit aa0600
  fi
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit aa0600
  do
Packit aa0600
    test -f "$tmpdepfile" && break
Packit aa0600
  done
Packit aa0600
  aix_post_process_depfile
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
tcc)
Packit aa0600
  # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
Packit aa0600
  # FIXME: That version still under development at the moment of writing.
Packit aa0600
  #        Make that this statement remains true also for stable, released
Packit aa0600
  #        versions.
Packit aa0600
  # It will wrap lines (doesn't matter whether long or short) with a
Packit aa0600
  # trailing '\', as in:
Packit aa0600
  #
Packit aa0600
  #   foo.o : \
Packit aa0600
  #    foo.c \
Packit aa0600
  #    foo.h \
Packit aa0600
  #
Packit aa0600
  # It will put a trailing '\' even on the last line, and will use leading
Packit aa0600
  # spaces rather than leading tabs (at least since its commit 0394caf7
Packit aa0600
  # "Emit spaces for -MD").
Packit aa0600
  "$@" -MD -MF "$tmpdepfile"
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
Packit aa0600
  # We have to change lines of the first kind to '$object: \'.
Packit aa0600
  sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
Packit aa0600
  # And for each line of the second kind, we have to emit a 'dep.h:'
Packit aa0600
  # dummy dependency, to avoid the deleted-header problem.
Packit aa0600
  sed -n -e 's|^  *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
## The order of this option in the case statement is important, since the
Packit aa0600
## shell code in configure will try each of these formats in the order
Packit aa0600
## listed in this file.  A plain '-MD' option would be understood by many
Packit aa0600
## compilers, so we must ensure this comes after the gcc and icc options.
Packit aa0600
pgcc)
Packit aa0600
  # Portland's C compiler understands '-MD'.
Packit aa0600
  # Will always output deps to 'file.d' where file is the root name of the
Packit aa0600
  # source file under compilation, even if file resides in a subdirectory.
Packit aa0600
  # The object file name does not affect the name of the '.d' file.
Packit aa0600
  # pgcc 10.2 will output
Packit aa0600
  #    foo.o: sub/foo.c sub/foo.h
Packit aa0600
  # and will wrap long lines using '\' :
Packit aa0600
  #    foo.o: sub/foo.c ... \
Packit aa0600
  #     sub/foo.h ... \
Packit aa0600
  #     ...
Packit aa0600
  set_dir_from "$object"
Packit aa0600
  # Use the source, not the object, to determine the base name, since
Packit aa0600
  # that's sadly what pgcc will do too.
Packit aa0600
  set_base_from "$source"
Packit aa0600
  tmpdepfile=$base.d
Packit aa0600
Packit aa0600
  # For projects that build the same source file twice into different object
Packit aa0600
  # files, the pgcc approach of using the *source* file root name can cause
Packit aa0600
  # problems in parallel builds.  Use a locking strategy to avoid stomping on
Packit aa0600
  # the same $tmpdepfile.
Packit aa0600
  lockdir=$base.d-lock
Packit aa0600
  trap "
Packit aa0600
    echo '$0: caught signal, cleaning up...' >&2
Packit aa0600
    rmdir '$lockdir'
Packit aa0600
    exit 1
Packit aa0600
  " 1 2 13 15
Packit aa0600
  numtries=100
Packit aa0600
  i=$numtries
Packit aa0600
  while test $i -gt 0; do
Packit aa0600
    # mkdir is a portable test-and-set.
Packit aa0600
    if mkdir "$lockdir" 2>/dev/null; then
Packit aa0600
      # This process acquired the lock.
Packit aa0600
      "$@" -MD
Packit aa0600
      stat=$?
Packit aa0600
      # Release the lock.
Packit aa0600
      rmdir "$lockdir"
Packit aa0600
      break
Packit aa0600
    else
Packit aa0600
      # If the lock is being held by a different process, wait
Packit aa0600
      # until the winning process is done or we timeout.
Packit aa0600
      while test -d "$lockdir" && test $i -gt 0; do
Packit aa0600
        sleep 1
Packit aa0600
        i=`expr $i - 1`
Packit aa0600
      done
Packit aa0600
    fi
Packit aa0600
    i=`expr $i - 1`
Packit aa0600
  done
Packit aa0600
  trap - 1 2 13 15
Packit aa0600
  if test $i -le 0; then
Packit aa0600
    echo "$0: failed to acquire lock after $numtries attempts" >&2
Packit aa0600
    echo "$0: check lockdir '$lockdir'" >&2
Packit aa0600
    exit 1
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  # Each line is of the form `foo.o: dependent.h',
Packit aa0600
  # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
Packit aa0600
  # Do two passes, one to just change these to
Packit aa0600
  # `$object: dependent.h' and one to simply `dependent.h:'.
Packit aa0600
  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
Packit aa0600
  # Some versions of the HPUX 10.20 sed can't process this invocation
Packit aa0600
  # correctly.  Breaking it into two sed invocations is a workaround.
Packit aa0600
  sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
Packit aa0600
    | sed -e 's/$/ :/' >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
hp2)
Packit aa0600
  # The "hp" stanza above does not work with aCC (C++) and HP's ia64
Packit aa0600
  # compilers, which have integrated preprocessors.  The correct option
Packit aa0600
  # to use with these is +Maked; it writes dependencies to a file named
Packit aa0600
  # 'foo.d', which lands next to the object file, wherever that
Packit aa0600
  # happens to be.
Packit aa0600
  # Much of this is similar to the tru64 case; see comments there.
Packit aa0600
  set_dir_from  "$object"
Packit aa0600
  set_base_from "$object"
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    tmpdepfile1=$dir$base.d
Packit aa0600
    tmpdepfile2=$dir.libs/$base.d
Packit aa0600
    "$@" -Wc,+Maked
Packit aa0600
  else
Packit aa0600
    tmpdepfile1=$dir$base.d
Packit aa0600
    tmpdepfile2=$dir$base.d
Packit aa0600
    "$@" +Maked
Packit aa0600
  fi
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
     rm -f "$tmpdepfile1" "$tmpdepfile2"
Packit aa0600
     exit $stat
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
Packit aa0600
  do
Packit aa0600
    test -f "$tmpdepfile" && break
Packit aa0600
  done
Packit aa0600
  if test -f "$tmpdepfile"; then
Packit aa0600
    sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
Packit aa0600
    # Add 'dependent.h:' lines.
Packit aa0600
    sed -ne '2,${
Packit aa0600
               s/^ *//
Packit aa0600
               s/ \\*$//
Packit aa0600
               s/$/:/
Packit aa0600
               p
Packit aa0600
             }' "$tmpdepfile" >> "$depfile"
Packit aa0600
  else
Packit aa0600
    make_dummy_depfile
Packit aa0600
  fi
Packit aa0600
  rm -f "$tmpdepfile" "$tmpdepfile2"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
tru64)
Packit aa0600
  # The Tru64 compiler uses -MD to generate dependencies as a side
Packit aa0600
  # effect.  'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
Packit aa0600
  # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
Packit aa0600
  # dependencies in 'foo.d' instead, so we check for that too.
Packit aa0600
  # Subdirectories are respected.
Packit aa0600
  set_dir_from  "$object"
Packit aa0600
  set_base_from "$object"
Packit aa0600
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    # Libtool generates 2 separate objects for the 2 libraries.  These
Packit aa0600
    # two compilations output dependencies in $dir.libs/$base.o.d and
Packit aa0600
    # in $dir$base.o.d.  We have to check for both files, because
Packit aa0600
    # one of the two compilations can be disabled.  We should prefer
Packit aa0600
    # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
Packit aa0600
    # automatically cleaned when .libs/ is deleted, while ignoring
Packit aa0600
    # the former would cause a distcleancheck panic.
Packit aa0600
    tmpdepfile1=$dir$base.o.d          # libtool 1.5
Packit aa0600
    tmpdepfile2=$dir.libs/$base.o.d    # Likewise.
Packit aa0600
    tmpdepfile3=$dir.libs/$base.d      # Compaq CCC V6.2-504
Packit aa0600
    "$@" -Wc,-MD
Packit aa0600
  else
Packit aa0600
    tmpdepfile1=$dir$base.d
Packit aa0600
    tmpdepfile2=$dir$base.d
Packit aa0600
    tmpdepfile3=$dir$base.d
Packit aa0600
    "$@" -MD
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  stat=$?
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit aa0600
  do
Packit aa0600
    test -f "$tmpdepfile" && break
Packit aa0600
  done
Packit aa0600
  # Same post-processing that is required for AIX mode.
Packit aa0600
  aix_post_process_depfile
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
msvc7)
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    showIncludes=-Wc,-showIncludes
Packit aa0600
  else
Packit aa0600
    showIncludes=-showIncludes
Packit aa0600
  fi
Packit aa0600
  "$@" $showIncludes > "$tmpdepfile"
Packit aa0600
  stat=$?
Packit aa0600
  grep -v '^Note: including file: ' "$tmpdepfile"
Packit aa0600
  if test $stat -ne 0; then
Packit aa0600
    rm -f "$tmpdepfile"
Packit aa0600
    exit $stat
Packit aa0600
  fi
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  echo "$object : \\" > "$depfile"
Packit aa0600
  # The first sed program below extracts the file names and escapes
Packit aa0600
  # backslashes for cygpath.  The second sed program outputs the file
Packit aa0600
  # name when reading, but also accumulates all include files in the
Packit aa0600
  # hold buffer in order to output them again at the end.  This only
Packit aa0600
  # works with sed implementations that can handle large buffers.
Packit aa0600
  sed < "$tmpdepfile" -n '
Packit aa0600
/^Note: including file:  *\(.*\)/ {
Packit aa0600
  s//\1/
Packit aa0600
  s/\\/\\\\/g
Packit aa0600
  p
Packit aa0600
}' | $cygpath_u | sort -u | sed -n '
Packit aa0600
s/ /\\ /g
Packit aa0600
s/\(.*\)/'"$tab"'\1 \\/p
Packit aa0600
s/.\(.*\) \\/\1:/
Packit aa0600
H
Packit aa0600
$ {
Packit aa0600
  s/.*/'"$tab"'/
Packit aa0600
  G
Packit aa0600
  p
Packit aa0600
}' >> "$depfile"
Packit aa0600
  echo >> "$depfile" # make sure the fragment doesn't end with a backslash
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
msvc7msys)
Packit aa0600
  # This case exists only to let depend.m4 do its work.  It works by
Packit aa0600
  # looking at the text of this script.  This case will never be run,
Packit aa0600
  # since it is checked for above.
Packit aa0600
  exit 1
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
#nosideeffect)
Packit aa0600
  # This comment above is used by automake to tell side-effect
Packit aa0600
  # dependency tracking mechanisms from slower ones.
Packit aa0600
Packit aa0600
dashmstdout)
Packit aa0600
  # Important note: in order to support this mode, a compiler *must*
Packit aa0600
  # always write the preprocessed file to stdout, regardless of -o.
Packit aa0600
  "$@" || exit $?
Packit aa0600
Packit aa0600
  # Remove the call to Libtool.
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    while test "X$1" != 'X--mode=compile'; do
Packit aa0600
      shift
Packit aa0600
    done
Packit aa0600
    shift
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  # Remove '-o $object'.
Packit aa0600
  IFS=" "
Packit aa0600
  for arg
Packit aa0600
  do
Packit aa0600
    case $arg in
Packit aa0600
    -o)
Packit aa0600
      shift
Packit aa0600
      ;;
Packit aa0600
    $object)
Packit aa0600
      shift
Packit aa0600
      ;;
Packit aa0600
    *)
Packit aa0600
      set fnord "$@" "$arg"
Packit aa0600
      shift # fnord
Packit aa0600
      shift # $arg
Packit aa0600
      ;;
Packit aa0600
    esac
Packit aa0600
  done
Packit aa0600
Packit aa0600
  test -z "$dashmflag" && dashmflag=-M
Packit aa0600
  # Require at least two characters before searching for ':'
Packit aa0600
  # in the target name.  This is to cope with DOS-style filenames:
Packit aa0600
  # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
Packit aa0600
  "$@" $dashmflag |
Packit aa0600
    sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  cat < "$tmpdepfile" > "$depfile"
Packit aa0600
  # Some versions of the HPUX 10.20 sed can't process this sed invocation
Packit aa0600
  # correctly.  Breaking it into two sed invocations is a workaround.
Packit aa0600
  tr ' ' "$nl" < "$tmpdepfile" \
Packit aa0600
    | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
Packit aa0600
    | sed -e 's/$/ :/' >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
dashXmstdout)
Packit aa0600
  # This case only exists to satisfy depend.m4.  It is never actually
Packit aa0600
  # run, as this mode is specially recognized in the preamble.
Packit aa0600
  exit 1
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
makedepend)
Packit aa0600
  "$@" || exit $?
Packit aa0600
  # Remove any Libtool call
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    while test "X$1" != 'X--mode=compile'; do
Packit aa0600
      shift
Packit aa0600
    done
Packit aa0600
    shift
Packit aa0600
  fi
Packit aa0600
  # X makedepend
Packit aa0600
  shift
Packit aa0600
  cleared=no eat=no
Packit aa0600
  for arg
Packit aa0600
  do
Packit aa0600
    case $cleared in
Packit aa0600
    no)
Packit aa0600
      set ""; shift
Packit aa0600
      cleared=yes ;;
Packit aa0600
    esac
Packit aa0600
    if test $eat = yes; then
Packit aa0600
      eat=no
Packit aa0600
      continue
Packit aa0600
    fi
Packit aa0600
    case "$arg" in
Packit aa0600
    -D*|-I*)
Packit aa0600
      set fnord "$@" "$arg"; shift ;;
Packit aa0600
    # Strip any option that makedepend may not understand.  Remove
Packit aa0600
    # the object too, otherwise makedepend will parse it as a source file.
Packit aa0600
    -arch)
Packit aa0600
      eat=yes ;;
Packit aa0600
    -*|$object)
Packit aa0600
      ;;
Packit aa0600
    *)
Packit aa0600
      set fnord "$@" "$arg"; shift ;;
Packit aa0600
    esac
Packit aa0600
  done
Packit aa0600
  obj_suffix=`echo "$object" | sed 's/^.*\././'`
Packit aa0600
  touch "$tmpdepfile"
Packit aa0600
  ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  # makedepend may prepend the VPATH from the source file name to the object.
Packit aa0600
  # No need to regex-escape $object, excess matching of '.' is harmless.
Packit aa0600
  sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
Packit aa0600
  # Some versions of the HPUX 10.20 sed can't process the last invocation
Packit aa0600
  # correctly.  Breaking it into two sed invocations is a workaround.
Packit aa0600
  sed '1,2d' "$tmpdepfile" \
Packit aa0600
    | tr ' ' "$nl" \
Packit aa0600
    | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
Packit aa0600
    | sed -e 's/$/ :/' >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile" "$tmpdepfile".bak
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
cpp)
Packit aa0600
  # Important note: in order to support this mode, a compiler *must*
Packit aa0600
  # always write the preprocessed file to stdout.
Packit aa0600
  "$@" || exit $?
Packit aa0600
Packit aa0600
  # Remove the call to Libtool.
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    while test "X$1" != 'X--mode=compile'; do
Packit aa0600
      shift
Packit aa0600
    done
Packit aa0600
    shift
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  # Remove '-o $object'.
Packit aa0600
  IFS=" "
Packit aa0600
  for arg
Packit aa0600
  do
Packit aa0600
    case $arg in
Packit aa0600
    -o)
Packit aa0600
      shift
Packit aa0600
      ;;
Packit aa0600
    $object)
Packit aa0600
      shift
Packit aa0600
      ;;
Packit aa0600
    *)
Packit aa0600
      set fnord "$@" "$arg"
Packit aa0600
      shift # fnord
Packit aa0600
      shift # $arg
Packit aa0600
      ;;
Packit aa0600
    esac
Packit aa0600
  done
Packit aa0600
Packit aa0600
  "$@" -E \
Packit aa0600
    | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
Packit aa0600
             -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
Packit aa0600
    | sed '$ s: \\$::' > "$tmpdepfile"
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  echo "$object : \\" > "$depfile"
Packit aa0600
  cat < "$tmpdepfile" >> "$depfile"
Packit aa0600
  sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
msvisualcpp)
Packit aa0600
  # Important note: in order to support this mode, a compiler *must*
Packit aa0600
  # always write the preprocessed file to stdout.
Packit aa0600
  "$@" || exit $?
Packit aa0600
Packit aa0600
  # Remove the call to Libtool.
Packit aa0600
  if test "$libtool" = yes; then
Packit aa0600
    while test "X$1" != 'X--mode=compile'; do
Packit aa0600
      shift
Packit aa0600
    done
Packit aa0600
    shift
Packit aa0600
  fi
Packit aa0600
Packit aa0600
  IFS=" "
Packit aa0600
  for arg
Packit aa0600
  do
Packit aa0600
    case "$arg" in
Packit aa0600
    -o)
Packit aa0600
      shift
Packit aa0600
      ;;
Packit aa0600
    $object)
Packit aa0600
      shift
Packit aa0600
      ;;
Packit aa0600
    "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
Packit aa0600
        set fnord "$@"
Packit aa0600
        shift
Packit aa0600
        shift
Packit aa0600
        ;;
Packit aa0600
    *)
Packit aa0600
        set fnord "$@" "$arg"
Packit aa0600
        shift
Packit aa0600
        shift
Packit aa0600
        ;;
Packit aa0600
    esac
Packit aa0600
  done
Packit aa0600
  "$@" -E 2>/dev/null |
Packit aa0600
  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
Packit aa0600
  rm -f "$depfile"
Packit aa0600
  echo "$object : \\" > "$depfile"
Packit aa0600
  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
Packit aa0600
  echo "$tab" >> "$depfile"
Packit aa0600
  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
Packit aa0600
  rm -f "$tmpdepfile"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
msvcmsys)
Packit aa0600
  # This case exists only to let depend.m4 do its work.  It works by
Packit aa0600
  # looking at the text of this script.  This case will never be run,
Packit aa0600
  # since it is checked for above.
Packit aa0600
  exit 1
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
none)
Packit aa0600
  exec "$@"
Packit aa0600
  ;;
Packit aa0600
Packit aa0600
*)
Packit aa0600
  echo "Unknown depmode $depmode" 1>&2
Packit aa0600
  exit 1
Packit aa0600
  ;;
Packit aa0600
esac
Packit aa0600
Packit aa0600
exit 0
Packit aa0600
Packit aa0600
# Local Variables:
Packit aa0600
# mode: shell-script
Packit aa0600
# sh-indentation: 2
Packit aa0600
# eval: (add-hook 'write-file-hooks 'time-stamp)
Packit aa0600
# time-stamp-start: "scriptversion="
Packit aa0600
# time-stamp-format: "%:y-%02m-%02d.%02H"
Packit aa0600
# time-stamp-time-zone: "UTC0"
Packit aa0600
# time-stamp-end: "; # UTC"
Packit aa0600
# End: