annotate src/opusfile-0.9/depcomp @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 4664ac0c1032
children
rev   line source
cannam@154 1 #! /bin/sh
cannam@154 2 # depcomp - compile a program generating dependencies as side-effects
cannam@154 3
cannam@154 4 scriptversion=2013-05-30.07; # UTC
cannam@154 5
cannam@154 6 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
cannam@154 7
cannam@154 8 # This program is free software; you can redistribute it and/or modify
cannam@154 9 # it under the terms of the GNU General Public License as published by
cannam@154 10 # the Free Software Foundation; either version 2, or (at your option)
cannam@154 11 # any later version.
cannam@154 12
cannam@154 13 # This program is distributed in the hope that it will be useful,
cannam@154 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@154 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@154 16 # GNU General Public License for more details.
cannam@154 17
cannam@154 18 # You should have received a copy of the GNU General Public License
cannam@154 19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
cannam@154 20
cannam@154 21 # As a special exception to the GNU General Public License, if you
cannam@154 22 # distribute this file as part of a program that contains a
cannam@154 23 # configuration script generated by Autoconf, you may include it under
cannam@154 24 # the same distribution terms that you use for the rest of that program.
cannam@154 25
cannam@154 26 # Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
cannam@154 27
cannam@154 28 case $1 in
cannam@154 29 '')
cannam@154 30 echo "$0: No command. Try '$0 --help' for more information." 1>&2
cannam@154 31 exit 1;
cannam@154 32 ;;
cannam@154 33 -h | --h*)
cannam@154 34 cat <<\EOF
cannam@154 35 Usage: depcomp [--help] [--version] PROGRAM [ARGS]
cannam@154 36
cannam@154 37 Run PROGRAMS ARGS to compile a file, generating dependencies
cannam@154 38 as side-effects.
cannam@154 39
cannam@154 40 Environment variables:
cannam@154 41 depmode Dependency tracking mode.
cannam@154 42 source Source file read by 'PROGRAMS ARGS'.
cannam@154 43 object Object file output by 'PROGRAMS ARGS'.
cannam@154 44 DEPDIR directory where to store dependencies.
cannam@154 45 depfile Dependency file to output.
cannam@154 46 tmpdepfile Temporary file to use when outputting dependencies.
cannam@154 47 libtool Whether libtool is used (yes/no).
cannam@154 48
cannam@154 49 Report bugs to <bug-automake@gnu.org>.
cannam@154 50 EOF
cannam@154 51 exit $?
cannam@154 52 ;;
cannam@154 53 -v | --v*)
cannam@154 54 echo "depcomp $scriptversion"
cannam@154 55 exit $?
cannam@154 56 ;;
cannam@154 57 esac
cannam@154 58
cannam@154 59 # Get the directory component of the given path, and save it in the
cannam@154 60 # global variables '$dir'. Note that this directory component will
cannam@154 61 # be either empty or ending with a '/' character. This is deliberate.
cannam@154 62 set_dir_from ()
cannam@154 63 {
cannam@154 64 case $1 in
cannam@154 65 */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
cannam@154 66 *) dir=;;
cannam@154 67 esac
cannam@154 68 }
cannam@154 69
cannam@154 70 # Get the suffix-stripped basename of the given path, and save it the
cannam@154 71 # global variable '$base'.
cannam@154 72 set_base_from ()
cannam@154 73 {
cannam@154 74 base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
cannam@154 75 }
cannam@154 76
cannam@154 77 # If no dependency file was actually created by the compiler invocation,
cannam@154 78 # we still have to create a dummy depfile, to avoid errors with the
cannam@154 79 # Makefile "include basename.Plo" scheme.
cannam@154 80 make_dummy_depfile ()
cannam@154 81 {
cannam@154 82 echo "#dummy" > "$depfile"
cannam@154 83 }
cannam@154 84
cannam@154 85 # Factor out some common post-processing of the generated depfile.
cannam@154 86 # Requires the auxiliary global variable '$tmpdepfile' to be set.
cannam@154 87 aix_post_process_depfile ()
cannam@154 88 {
cannam@154 89 # If the compiler actually managed to produce a dependency file,
cannam@154 90 # post-process it.
cannam@154 91 if test -f "$tmpdepfile"; then
cannam@154 92 # Each line is of the form 'foo.o: dependency.h'.
cannam@154 93 # Do two passes, one to just change these to
cannam@154 94 # $object: dependency.h
cannam@154 95 # and one to simply output
cannam@154 96 # dependency.h:
cannam@154 97 # which is needed to avoid the deleted-header problem.
cannam@154 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
cannam@154 99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
cannam@154 100 } > "$depfile"
cannam@154 101 rm -f "$tmpdepfile"
cannam@154 102 else
cannam@154 103 make_dummy_depfile
cannam@154 104 fi
cannam@154 105 }
cannam@154 106
cannam@154 107 # A tabulation character.
cannam@154 108 tab=' '
cannam@154 109 # A newline character.
cannam@154 110 nl='
cannam@154 111 '
cannam@154 112 # Character ranges might be problematic outside the C locale.
cannam@154 113 # These definitions help.
cannam@154 114 upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
cannam@154 115 lower=abcdefghijklmnopqrstuvwxyz
cannam@154 116 digits=0123456789
cannam@154 117 alpha=${upper}${lower}
cannam@154 118
cannam@154 119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
cannam@154 120 echo "depcomp: Variables source, object and depmode must be set" 1>&2
cannam@154 121 exit 1
cannam@154 122 fi
cannam@154 123
cannam@154 124 # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
cannam@154 125 depfile=${depfile-`echo "$object" |
cannam@154 126 sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
cannam@154 127 tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
cannam@154 128
cannam@154 129 rm -f "$tmpdepfile"
cannam@154 130
cannam@154 131 # Avoid interferences from the environment.
cannam@154 132 gccflag= dashmflag=
cannam@154 133
cannam@154 134 # Some modes work just like other modes, but use different flags. We
cannam@154 135 # parameterize here, but still list the modes in the big case below,
cannam@154 136 # to make depend.m4 easier to write. Note that we *cannot* use a case
cannam@154 137 # here, because this file can only contain one case statement.
cannam@154 138 if test "$depmode" = hp; then
cannam@154 139 # HP compiler uses -M and no extra arg.
cannam@154 140 gccflag=-M
cannam@154 141 depmode=gcc
cannam@154 142 fi
cannam@154 143
cannam@154 144 if test "$depmode" = dashXmstdout; then
cannam@154 145 # This is just like dashmstdout with a different argument.
cannam@154 146 dashmflag=-xM
cannam@154 147 depmode=dashmstdout
cannam@154 148 fi
cannam@154 149
cannam@154 150 cygpath_u="cygpath -u -f -"
cannam@154 151 if test "$depmode" = msvcmsys; then
cannam@154 152 # This is just like msvisualcpp but w/o cygpath translation.
cannam@154 153 # Just convert the backslash-escaped backslashes to single forward
cannam@154 154 # slashes to satisfy depend.m4
cannam@154 155 cygpath_u='sed s,\\\\,/,g'
cannam@154 156 depmode=msvisualcpp
cannam@154 157 fi
cannam@154 158
cannam@154 159 if test "$depmode" = msvc7msys; then
cannam@154 160 # This is just like msvc7 but w/o cygpath translation.
cannam@154 161 # Just convert the backslash-escaped backslashes to single forward
cannam@154 162 # slashes to satisfy depend.m4
cannam@154 163 cygpath_u='sed s,\\\\,/,g'
cannam@154 164 depmode=msvc7
cannam@154 165 fi
cannam@154 166
cannam@154 167 if test "$depmode" = xlc; then
cannam@154 168 # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
cannam@154 169 gccflag=-qmakedep=gcc,-MF
cannam@154 170 depmode=gcc
cannam@154 171 fi
cannam@154 172
cannam@154 173 case "$depmode" in
cannam@154 174 gcc3)
cannam@154 175 ## gcc 3 implements dependency tracking that does exactly what
cannam@154 176 ## we want. Yay! Note: for some reason libtool 1.4 doesn't like
cannam@154 177 ## it if -MD -MP comes after the -MF stuff. Hmm.
cannam@154 178 ## Unfortunately, FreeBSD c89 acceptance of flags depends upon
cannam@154 179 ## the command line argument order; so add the flags where they
cannam@154 180 ## appear in depend2.am. Note that the slowdown incurred here
cannam@154 181 ## affects only configure: in makefiles, %FASTDEP% shortcuts this.
cannam@154 182 for arg
cannam@154 183 do
cannam@154 184 case $arg in
cannam@154 185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
cannam@154 186 *) set fnord "$@" "$arg" ;;
cannam@154 187 esac
cannam@154 188 shift # fnord
cannam@154 189 shift # $arg
cannam@154 190 done
cannam@154 191 "$@"
cannam@154 192 stat=$?
cannam@154 193 if test $stat -ne 0; then
cannam@154 194 rm -f "$tmpdepfile"
cannam@154 195 exit $stat
cannam@154 196 fi
cannam@154 197 mv "$tmpdepfile" "$depfile"
cannam@154 198 ;;
cannam@154 199
cannam@154 200 gcc)
cannam@154 201 ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
cannam@154 202 ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
cannam@154 203 ## (see the conditional assignment to $gccflag above).
cannam@154 204 ## There are various ways to get dependency output from gcc. Here's
cannam@154 205 ## why we pick this rather obscure method:
cannam@154 206 ## - Don't want to use -MD because we'd like the dependencies to end
cannam@154 207 ## up in a subdir. Having to rename by hand is ugly.
cannam@154 208 ## (We might end up doing this anyway to support other compilers.)
cannam@154 209 ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
cannam@154 210 ## -MM, not -M (despite what the docs say). Also, it might not be
cannam@154 211 ## supported by the other compilers which use the 'gcc' depmode.
cannam@154 212 ## - Using -M directly means running the compiler twice (even worse
cannam@154 213 ## than renaming).
cannam@154 214 if test -z "$gccflag"; then
cannam@154 215 gccflag=-MD,
cannam@154 216 fi
cannam@154 217 "$@" -Wp,"$gccflag$tmpdepfile"
cannam@154 218 stat=$?
cannam@154 219 if test $stat -ne 0; then
cannam@154 220 rm -f "$tmpdepfile"
cannam@154 221 exit $stat
cannam@154 222 fi
cannam@154 223 rm -f "$depfile"
cannam@154 224 echo "$object : \\" > "$depfile"
cannam@154 225 # The second -e expression handles DOS-style file names with drive
cannam@154 226 # letters.
cannam@154 227 sed -e 's/^[^:]*: / /' \
cannam@154 228 -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
cannam@154 229 ## This next piece of magic avoids the "deleted header file" problem.
cannam@154 230 ## The problem is that when a header file which appears in a .P file
cannam@154 231 ## is deleted, the dependency causes make to die (because there is
cannam@154 232 ## typically no way to rebuild the header). We avoid this by adding
cannam@154 233 ## dummy dependencies for each header file. Too bad gcc doesn't do
cannam@154 234 ## this for us directly.
cannam@154 235 ## Some versions of gcc put a space before the ':'. On the theory
cannam@154 236 ## that the space means something, we add a space to the output as
cannam@154 237 ## well. hp depmode also adds that space, but also prefixes the VPATH
cannam@154 238 ## to the object. Take care to not repeat it in the output.
cannam@154 239 ## Some versions of the HPUX 10.20 sed can't process this invocation
cannam@154 240 ## correctly. Breaking it into two sed invocations is a workaround.
cannam@154 241 tr ' ' "$nl" < "$tmpdepfile" \
cannam@154 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
cannam@154 243 | sed -e 's/$/ :/' >> "$depfile"
cannam@154 244 rm -f "$tmpdepfile"
cannam@154 245 ;;
cannam@154 246
cannam@154 247 hp)
cannam@154 248 # This case exists only to let depend.m4 do its work. It works by
cannam@154 249 # looking at the text of this script. This case will never be run,
cannam@154 250 # since it is checked for above.
cannam@154 251 exit 1
cannam@154 252 ;;
cannam@154 253
cannam@154 254 sgi)
cannam@154 255 if test "$libtool" = yes; then
cannam@154 256 "$@" "-Wp,-MDupdate,$tmpdepfile"
cannam@154 257 else
cannam@154 258 "$@" -MDupdate "$tmpdepfile"
cannam@154 259 fi
cannam@154 260 stat=$?
cannam@154 261 if test $stat -ne 0; then
cannam@154 262 rm -f "$tmpdepfile"
cannam@154 263 exit $stat
cannam@154 264 fi
cannam@154 265 rm -f "$depfile"
cannam@154 266
cannam@154 267 if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
cannam@154 268 echo "$object : \\" > "$depfile"
cannam@154 269 # Clip off the initial element (the dependent). Don't try to be
cannam@154 270 # clever and replace this with sed code, as IRIX sed won't handle
cannam@154 271 # lines with more than a fixed number of characters (4096 in
cannam@154 272 # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
cannam@154 273 # the IRIX cc adds comments like '#:fec' to the end of the
cannam@154 274 # dependency line.
cannam@154 275 tr ' ' "$nl" < "$tmpdepfile" \
cannam@154 276 | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
cannam@154 277 | tr "$nl" ' ' >> "$depfile"
cannam@154 278 echo >> "$depfile"
cannam@154 279 # The second pass generates a dummy entry for each header file.
cannam@154 280 tr ' ' "$nl" < "$tmpdepfile" \
cannam@154 281 | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
cannam@154 282 >> "$depfile"
cannam@154 283 else
cannam@154 284 make_dummy_depfile
cannam@154 285 fi
cannam@154 286 rm -f "$tmpdepfile"
cannam@154 287 ;;
cannam@154 288
cannam@154 289 xlc)
cannam@154 290 # This case exists only to let depend.m4 do its work. It works by
cannam@154 291 # looking at the text of this script. This case will never be run,
cannam@154 292 # since it is checked for above.
cannam@154 293 exit 1
cannam@154 294 ;;
cannam@154 295
cannam@154 296 aix)
cannam@154 297 # The C for AIX Compiler uses -M and outputs the dependencies
cannam@154 298 # in a .u file. In older versions, this file always lives in the
cannam@154 299 # current directory. Also, the AIX compiler puts '$object:' at the
cannam@154 300 # start of each line; $object doesn't have directory information.
cannam@154 301 # Version 6 uses the directory in both cases.
cannam@154 302 set_dir_from "$object"
cannam@154 303 set_base_from "$object"
cannam@154 304 if test "$libtool" = yes; then
cannam@154 305 tmpdepfile1=$dir$base.u
cannam@154 306 tmpdepfile2=$base.u
cannam@154 307 tmpdepfile3=$dir.libs/$base.u
cannam@154 308 "$@" -Wc,-M
cannam@154 309 else
cannam@154 310 tmpdepfile1=$dir$base.u
cannam@154 311 tmpdepfile2=$dir$base.u
cannam@154 312 tmpdepfile3=$dir$base.u
cannam@154 313 "$@" -M
cannam@154 314 fi
cannam@154 315 stat=$?
cannam@154 316 if test $stat -ne 0; then
cannam@154 317 rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
cannam@154 318 exit $stat
cannam@154 319 fi
cannam@154 320
cannam@154 321 for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
cannam@154 322 do
cannam@154 323 test -f "$tmpdepfile" && break
cannam@154 324 done
cannam@154 325 aix_post_process_depfile
cannam@154 326 ;;
cannam@154 327
cannam@154 328 tcc)
cannam@154 329 # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
cannam@154 330 # FIXME: That version still under development at the moment of writing.
cannam@154 331 # Make that this statement remains true also for stable, released
cannam@154 332 # versions.
cannam@154 333 # It will wrap lines (doesn't matter whether long or short) with a
cannam@154 334 # trailing '\', as in:
cannam@154 335 #
cannam@154 336 # foo.o : \
cannam@154 337 # foo.c \
cannam@154 338 # foo.h \
cannam@154 339 #
cannam@154 340 # It will put a trailing '\' even on the last line, and will use leading
cannam@154 341 # spaces rather than leading tabs (at least since its commit 0394caf7
cannam@154 342 # "Emit spaces for -MD").
cannam@154 343 "$@" -MD -MF "$tmpdepfile"
cannam@154 344 stat=$?
cannam@154 345 if test $stat -ne 0; then
cannam@154 346 rm -f "$tmpdepfile"
cannam@154 347 exit $stat
cannam@154 348 fi
cannam@154 349 rm -f "$depfile"
cannam@154 350 # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
cannam@154 351 # We have to change lines of the first kind to '$object: \'.
cannam@154 352 sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
cannam@154 353 # And for each line of the second kind, we have to emit a 'dep.h:'
cannam@154 354 # dummy dependency, to avoid the deleted-header problem.
cannam@154 355 sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
cannam@154 356 rm -f "$tmpdepfile"
cannam@154 357 ;;
cannam@154 358
cannam@154 359 ## The order of this option in the case statement is important, since the
cannam@154 360 ## shell code in configure will try each of these formats in the order
cannam@154 361 ## listed in this file. A plain '-MD' option would be understood by many
cannam@154 362 ## compilers, so we must ensure this comes after the gcc and icc options.
cannam@154 363 pgcc)
cannam@154 364 # Portland's C compiler understands '-MD'.
cannam@154 365 # Will always output deps to 'file.d' where file is the root name of the
cannam@154 366 # source file under compilation, even if file resides in a subdirectory.
cannam@154 367 # The object file name does not affect the name of the '.d' file.
cannam@154 368 # pgcc 10.2 will output
cannam@154 369 # foo.o: sub/foo.c sub/foo.h
cannam@154 370 # and will wrap long lines using '\' :
cannam@154 371 # foo.o: sub/foo.c ... \
cannam@154 372 # sub/foo.h ... \
cannam@154 373 # ...
cannam@154 374 set_dir_from "$object"
cannam@154 375 # Use the source, not the object, to determine the base name, since
cannam@154 376 # that's sadly what pgcc will do too.
cannam@154 377 set_base_from "$source"
cannam@154 378 tmpdepfile=$base.d
cannam@154 379
cannam@154 380 # For projects that build the same source file twice into different object
cannam@154 381 # files, the pgcc approach of using the *source* file root name can cause
cannam@154 382 # problems in parallel builds. Use a locking strategy to avoid stomping on
cannam@154 383 # the same $tmpdepfile.
cannam@154 384 lockdir=$base.d-lock
cannam@154 385 trap "
cannam@154 386 echo '$0: caught signal, cleaning up...' >&2
cannam@154 387 rmdir '$lockdir'
cannam@154 388 exit 1
cannam@154 389 " 1 2 13 15
cannam@154 390 numtries=100
cannam@154 391 i=$numtries
cannam@154 392 while test $i -gt 0; do
cannam@154 393 # mkdir is a portable test-and-set.
cannam@154 394 if mkdir "$lockdir" 2>/dev/null; then
cannam@154 395 # This process acquired the lock.
cannam@154 396 "$@" -MD
cannam@154 397 stat=$?
cannam@154 398 # Release the lock.
cannam@154 399 rmdir "$lockdir"
cannam@154 400 break
cannam@154 401 else
cannam@154 402 # If the lock is being held by a different process, wait
cannam@154 403 # until the winning process is done or we timeout.
cannam@154 404 while test -d "$lockdir" && test $i -gt 0; do
cannam@154 405 sleep 1
cannam@154 406 i=`expr $i - 1`
cannam@154 407 done
cannam@154 408 fi
cannam@154 409 i=`expr $i - 1`
cannam@154 410 done
cannam@154 411 trap - 1 2 13 15
cannam@154 412 if test $i -le 0; then
cannam@154 413 echo "$0: failed to acquire lock after $numtries attempts" >&2
cannam@154 414 echo "$0: check lockdir '$lockdir'" >&2
cannam@154 415 exit 1
cannam@154 416 fi
cannam@154 417
cannam@154 418 if test $stat -ne 0; then
cannam@154 419 rm -f "$tmpdepfile"
cannam@154 420 exit $stat
cannam@154 421 fi
cannam@154 422 rm -f "$depfile"
cannam@154 423 # Each line is of the form `foo.o: dependent.h',
cannam@154 424 # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
cannam@154 425 # Do two passes, one to just change these to
cannam@154 426 # `$object: dependent.h' and one to simply `dependent.h:'.
cannam@154 427 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
cannam@154 428 # Some versions of the HPUX 10.20 sed can't process this invocation
cannam@154 429 # correctly. Breaking it into two sed invocations is a workaround.
cannam@154 430 sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
cannam@154 431 | sed -e 's/$/ :/' >> "$depfile"
cannam@154 432 rm -f "$tmpdepfile"
cannam@154 433 ;;
cannam@154 434
cannam@154 435 hp2)
cannam@154 436 # The "hp" stanza above does not work with aCC (C++) and HP's ia64
cannam@154 437 # compilers, which have integrated preprocessors. The correct option
cannam@154 438 # to use with these is +Maked; it writes dependencies to a file named
cannam@154 439 # 'foo.d', which lands next to the object file, wherever that
cannam@154 440 # happens to be.
cannam@154 441 # Much of this is similar to the tru64 case; see comments there.
cannam@154 442 set_dir_from "$object"
cannam@154 443 set_base_from "$object"
cannam@154 444 if test "$libtool" = yes; then
cannam@154 445 tmpdepfile1=$dir$base.d
cannam@154 446 tmpdepfile2=$dir.libs/$base.d
cannam@154 447 "$@" -Wc,+Maked
cannam@154 448 else
cannam@154 449 tmpdepfile1=$dir$base.d
cannam@154 450 tmpdepfile2=$dir$base.d
cannam@154 451 "$@" +Maked
cannam@154 452 fi
cannam@154 453 stat=$?
cannam@154 454 if test $stat -ne 0; then
cannam@154 455 rm -f "$tmpdepfile1" "$tmpdepfile2"
cannam@154 456 exit $stat
cannam@154 457 fi
cannam@154 458
cannam@154 459 for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
cannam@154 460 do
cannam@154 461 test -f "$tmpdepfile" && break
cannam@154 462 done
cannam@154 463 if test -f "$tmpdepfile"; then
cannam@154 464 sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
cannam@154 465 # Add 'dependent.h:' lines.
cannam@154 466 sed -ne '2,${
cannam@154 467 s/^ *//
cannam@154 468 s/ \\*$//
cannam@154 469 s/$/:/
cannam@154 470 p
cannam@154 471 }' "$tmpdepfile" >> "$depfile"
cannam@154 472 else
cannam@154 473 make_dummy_depfile
cannam@154 474 fi
cannam@154 475 rm -f "$tmpdepfile" "$tmpdepfile2"
cannam@154 476 ;;
cannam@154 477
cannam@154 478 tru64)
cannam@154 479 # The Tru64 compiler uses -MD to generate dependencies as a side
cannam@154 480 # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
cannam@154 481 # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
cannam@154 482 # dependencies in 'foo.d' instead, so we check for that too.
cannam@154 483 # Subdirectories are respected.
cannam@154 484 set_dir_from "$object"
cannam@154 485 set_base_from "$object"
cannam@154 486
cannam@154 487 if test "$libtool" = yes; then
cannam@154 488 # Libtool generates 2 separate objects for the 2 libraries. These
cannam@154 489 # two compilations output dependencies in $dir.libs/$base.o.d and
cannam@154 490 # in $dir$base.o.d. We have to check for both files, because
cannam@154 491 # one of the two compilations can be disabled. We should prefer
cannam@154 492 # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
cannam@154 493 # automatically cleaned when .libs/ is deleted, while ignoring
cannam@154 494 # the former would cause a distcleancheck panic.
cannam@154 495 tmpdepfile1=$dir$base.o.d # libtool 1.5
cannam@154 496 tmpdepfile2=$dir.libs/$base.o.d # Likewise.
cannam@154 497 tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
cannam@154 498 "$@" -Wc,-MD
cannam@154 499 else
cannam@154 500 tmpdepfile1=$dir$base.d
cannam@154 501 tmpdepfile2=$dir$base.d
cannam@154 502 tmpdepfile3=$dir$base.d
cannam@154 503 "$@" -MD
cannam@154 504 fi
cannam@154 505
cannam@154 506 stat=$?
cannam@154 507 if test $stat -ne 0; then
cannam@154 508 rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
cannam@154 509 exit $stat
cannam@154 510 fi
cannam@154 511
cannam@154 512 for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
cannam@154 513 do
cannam@154 514 test -f "$tmpdepfile" && break
cannam@154 515 done
cannam@154 516 # Same post-processing that is required for AIX mode.
cannam@154 517 aix_post_process_depfile
cannam@154 518 ;;
cannam@154 519
cannam@154 520 msvc7)
cannam@154 521 if test "$libtool" = yes; then
cannam@154 522 showIncludes=-Wc,-showIncludes
cannam@154 523 else
cannam@154 524 showIncludes=-showIncludes
cannam@154 525 fi
cannam@154 526 "$@" $showIncludes > "$tmpdepfile"
cannam@154 527 stat=$?
cannam@154 528 grep -v '^Note: including file: ' "$tmpdepfile"
cannam@154 529 if test $stat -ne 0; then
cannam@154 530 rm -f "$tmpdepfile"
cannam@154 531 exit $stat
cannam@154 532 fi
cannam@154 533 rm -f "$depfile"
cannam@154 534 echo "$object : \\" > "$depfile"
cannam@154 535 # The first sed program below extracts the file names and escapes
cannam@154 536 # backslashes for cygpath. The second sed program outputs the file
cannam@154 537 # name when reading, but also accumulates all include files in the
cannam@154 538 # hold buffer in order to output them again at the end. This only
cannam@154 539 # works with sed implementations that can handle large buffers.
cannam@154 540 sed < "$tmpdepfile" -n '
cannam@154 541 /^Note: including file: *\(.*\)/ {
cannam@154 542 s//\1/
cannam@154 543 s/\\/\\\\/g
cannam@154 544 p
cannam@154 545 }' | $cygpath_u | sort -u | sed -n '
cannam@154 546 s/ /\\ /g
cannam@154 547 s/\(.*\)/'"$tab"'\1 \\/p
cannam@154 548 s/.\(.*\) \\/\1:/
cannam@154 549 H
cannam@154 550 $ {
cannam@154 551 s/.*/'"$tab"'/
cannam@154 552 G
cannam@154 553 p
cannam@154 554 }' >> "$depfile"
cannam@154 555 echo >> "$depfile" # make sure the fragment doesn't end with a backslash
cannam@154 556 rm -f "$tmpdepfile"
cannam@154 557 ;;
cannam@154 558
cannam@154 559 msvc7msys)
cannam@154 560 # This case exists only to let depend.m4 do its work. It works by
cannam@154 561 # looking at the text of this script. This case will never be run,
cannam@154 562 # since it is checked for above.
cannam@154 563 exit 1
cannam@154 564 ;;
cannam@154 565
cannam@154 566 #nosideeffect)
cannam@154 567 # This comment above is used by automake to tell side-effect
cannam@154 568 # dependency tracking mechanisms from slower ones.
cannam@154 569
cannam@154 570 dashmstdout)
cannam@154 571 # Important note: in order to support this mode, a compiler *must*
cannam@154 572 # always write the preprocessed file to stdout, regardless of -o.
cannam@154 573 "$@" || exit $?
cannam@154 574
cannam@154 575 # Remove the call to Libtool.
cannam@154 576 if test "$libtool" = yes; then
cannam@154 577 while test "X$1" != 'X--mode=compile'; do
cannam@154 578 shift
cannam@154 579 done
cannam@154 580 shift
cannam@154 581 fi
cannam@154 582
cannam@154 583 # Remove '-o $object'.
cannam@154 584 IFS=" "
cannam@154 585 for arg
cannam@154 586 do
cannam@154 587 case $arg in
cannam@154 588 -o)
cannam@154 589 shift
cannam@154 590 ;;
cannam@154 591 $object)
cannam@154 592 shift
cannam@154 593 ;;
cannam@154 594 *)
cannam@154 595 set fnord "$@" "$arg"
cannam@154 596 shift # fnord
cannam@154 597 shift # $arg
cannam@154 598 ;;
cannam@154 599 esac
cannam@154 600 done
cannam@154 601
cannam@154 602 test -z "$dashmflag" && dashmflag=-M
cannam@154 603 # Require at least two characters before searching for ':'
cannam@154 604 # in the target name. This is to cope with DOS-style filenames:
cannam@154 605 # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
cannam@154 606 "$@" $dashmflag |
cannam@154 607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
cannam@154 608 rm -f "$depfile"
cannam@154 609 cat < "$tmpdepfile" > "$depfile"
cannam@154 610 # Some versions of the HPUX 10.20 sed can't process this sed invocation
cannam@154 611 # correctly. Breaking it into two sed invocations is a workaround.
cannam@154 612 tr ' ' "$nl" < "$tmpdepfile" \
cannam@154 613 | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
cannam@154 614 | sed -e 's/$/ :/' >> "$depfile"
cannam@154 615 rm -f "$tmpdepfile"
cannam@154 616 ;;
cannam@154 617
cannam@154 618 dashXmstdout)
cannam@154 619 # This case only exists to satisfy depend.m4. It is never actually
cannam@154 620 # run, as this mode is specially recognized in the preamble.
cannam@154 621 exit 1
cannam@154 622 ;;
cannam@154 623
cannam@154 624 makedepend)
cannam@154 625 "$@" || exit $?
cannam@154 626 # Remove any Libtool call
cannam@154 627 if test "$libtool" = yes; then
cannam@154 628 while test "X$1" != 'X--mode=compile'; do
cannam@154 629 shift
cannam@154 630 done
cannam@154 631 shift
cannam@154 632 fi
cannam@154 633 # X makedepend
cannam@154 634 shift
cannam@154 635 cleared=no eat=no
cannam@154 636 for arg
cannam@154 637 do
cannam@154 638 case $cleared in
cannam@154 639 no)
cannam@154 640 set ""; shift
cannam@154 641 cleared=yes ;;
cannam@154 642 esac
cannam@154 643 if test $eat = yes; then
cannam@154 644 eat=no
cannam@154 645 continue
cannam@154 646 fi
cannam@154 647 case "$arg" in
cannam@154 648 -D*|-I*)
cannam@154 649 set fnord "$@" "$arg"; shift ;;
cannam@154 650 # Strip any option that makedepend may not understand. Remove
cannam@154 651 # the object too, otherwise makedepend will parse it as a source file.
cannam@154 652 -arch)
cannam@154 653 eat=yes ;;
cannam@154 654 -*|$object)
cannam@154 655 ;;
cannam@154 656 *)
cannam@154 657 set fnord "$@" "$arg"; shift ;;
cannam@154 658 esac
cannam@154 659 done
cannam@154 660 obj_suffix=`echo "$object" | sed 's/^.*\././'`
cannam@154 661 touch "$tmpdepfile"
cannam@154 662 ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
cannam@154 663 rm -f "$depfile"
cannam@154 664 # makedepend may prepend the VPATH from the source file name to the object.
cannam@154 665 # No need to regex-escape $object, excess matching of '.' is harmless.
cannam@154 666 sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
cannam@154 667 # Some versions of the HPUX 10.20 sed can't process the last invocation
cannam@154 668 # correctly. Breaking it into two sed invocations is a workaround.
cannam@154 669 sed '1,2d' "$tmpdepfile" \
cannam@154 670 | tr ' ' "$nl" \
cannam@154 671 | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
cannam@154 672 | sed -e 's/$/ :/' >> "$depfile"
cannam@154 673 rm -f "$tmpdepfile" "$tmpdepfile".bak
cannam@154 674 ;;
cannam@154 675
cannam@154 676 cpp)
cannam@154 677 # Important note: in order to support this mode, a compiler *must*
cannam@154 678 # always write the preprocessed file to stdout.
cannam@154 679 "$@" || exit $?
cannam@154 680
cannam@154 681 # Remove the call to Libtool.
cannam@154 682 if test "$libtool" = yes; then
cannam@154 683 while test "X$1" != 'X--mode=compile'; do
cannam@154 684 shift
cannam@154 685 done
cannam@154 686 shift
cannam@154 687 fi
cannam@154 688
cannam@154 689 # Remove '-o $object'.
cannam@154 690 IFS=" "
cannam@154 691 for arg
cannam@154 692 do
cannam@154 693 case $arg in
cannam@154 694 -o)
cannam@154 695 shift
cannam@154 696 ;;
cannam@154 697 $object)
cannam@154 698 shift
cannam@154 699 ;;
cannam@154 700 *)
cannam@154 701 set fnord "$@" "$arg"
cannam@154 702 shift # fnord
cannam@154 703 shift # $arg
cannam@154 704 ;;
cannam@154 705 esac
cannam@154 706 done
cannam@154 707
cannam@154 708 "$@" -E \
cannam@154 709 | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
cannam@154 710 -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
cannam@154 711 | sed '$ s: \\$::' > "$tmpdepfile"
cannam@154 712 rm -f "$depfile"
cannam@154 713 echo "$object : \\" > "$depfile"
cannam@154 714 cat < "$tmpdepfile" >> "$depfile"
cannam@154 715 sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
cannam@154 716 rm -f "$tmpdepfile"
cannam@154 717 ;;
cannam@154 718
cannam@154 719 msvisualcpp)
cannam@154 720 # Important note: in order to support this mode, a compiler *must*
cannam@154 721 # always write the preprocessed file to stdout.
cannam@154 722 "$@" || exit $?
cannam@154 723
cannam@154 724 # Remove the call to Libtool.
cannam@154 725 if test "$libtool" = yes; then
cannam@154 726 while test "X$1" != 'X--mode=compile'; do
cannam@154 727 shift
cannam@154 728 done
cannam@154 729 shift
cannam@154 730 fi
cannam@154 731
cannam@154 732 IFS=" "
cannam@154 733 for arg
cannam@154 734 do
cannam@154 735 case "$arg" in
cannam@154 736 -o)
cannam@154 737 shift
cannam@154 738 ;;
cannam@154 739 $object)
cannam@154 740 shift
cannam@154 741 ;;
cannam@154 742 "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
cannam@154 743 set fnord "$@"
cannam@154 744 shift
cannam@154 745 shift
cannam@154 746 ;;
cannam@154 747 *)
cannam@154 748 set fnord "$@" "$arg"
cannam@154 749 shift
cannam@154 750 shift
cannam@154 751 ;;
cannam@154 752 esac
cannam@154 753 done
cannam@154 754 "$@" -E 2>/dev/null |
cannam@154 755 sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
cannam@154 756 rm -f "$depfile"
cannam@154 757 echo "$object : \\" > "$depfile"
cannam@154 758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
cannam@154 759 echo "$tab" >> "$depfile"
cannam@154 760 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
cannam@154 761 rm -f "$tmpdepfile"
cannam@154 762 ;;
cannam@154 763
cannam@154 764 msvcmsys)
cannam@154 765 # This case exists only to let depend.m4 do its work. It works by
cannam@154 766 # looking at the text of this script. This case will never be run,
cannam@154 767 # since it is checked for above.
cannam@154 768 exit 1
cannam@154 769 ;;
cannam@154 770
cannam@154 771 none)
cannam@154 772 exec "$@"
cannam@154 773 ;;
cannam@154 774
cannam@154 775 *)
cannam@154 776 echo "Unknown depmode $depmode" 1>&2
cannam@154 777 exit 1
cannam@154 778 ;;
cannam@154 779 esac
cannam@154 780
cannam@154 781 exit 0
cannam@154 782
cannam@154 783 # Local Variables:
cannam@154 784 # mode: shell-script
cannam@154 785 # sh-indentation: 2
cannam@154 786 # eval: (add-hook 'write-file-hooks 'time-stamp)
cannam@154 787 # time-stamp-start: "scriptversion="
cannam@154 788 # time-stamp-format: "%:y-%02m-%02d.%02H"
cannam@154 789 # time-stamp-time-zone: "UTC"
cannam@154 790 # time-stamp-end: "; # UTC"
cannam@154 791 # End: