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