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