annotate src/libogg-1.3.0/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 98c1576536ae
children
rev   line source
cannam@86 1 #! /bin/sh
cannam@86 2 # depcomp - compile a program generating dependencies as side-effects
cannam@86 3
cannam@86 4 scriptversion=2009-04-28.21; # UTC
cannam@86 5
cannam@86 6 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
cannam@86 7 # Software Foundation, Inc.
cannam@86 8
cannam@86 9 # This program is free software; you can redistribute it and/or modify
cannam@86 10 # it under the terms of the GNU General Public License as published by
cannam@86 11 # the Free Software Foundation; either version 2, or (at your option)
cannam@86 12 # any later version.
cannam@86 13
cannam@86 14 # This program is distributed in the hope that it will be useful,
cannam@86 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@86 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@86 17 # GNU General Public License for more details.
cannam@86 18
cannam@86 19 # You should have received a copy of the GNU General Public License
cannam@86 20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
cannam@86 21
cannam@86 22 # As a special exception to the GNU General Public License, if you
cannam@86 23 # distribute this file as part of a program that contains a
cannam@86 24 # configuration script generated by Autoconf, you may include it under
cannam@86 25 # the same distribution terms that you use for the rest of that program.
cannam@86 26
cannam@86 27 # Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
cannam@86 28
cannam@86 29 case $1 in
cannam@86 30 '')
cannam@86 31 echo "$0: No command. Try \`$0 --help' for more information." 1>&2
cannam@86 32 exit 1;
cannam@86 33 ;;
cannam@86 34 -h | --h*)
cannam@86 35 cat <<\EOF
cannam@86 36 Usage: depcomp [--help] [--version] PROGRAM [ARGS]
cannam@86 37
cannam@86 38 Run PROGRAMS ARGS to compile a file, generating dependencies
cannam@86 39 as side-effects.
cannam@86 40
cannam@86 41 Environment variables:
cannam@86 42 depmode Dependency tracking mode.
cannam@86 43 source Source file read by `PROGRAMS ARGS'.
cannam@86 44 object Object file output by `PROGRAMS ARGS'.
cannam@86 45 DEPDIR directory where to store dependencies.
cannam@86 46 depfile Dependency file to output.
cannam@86 47 tmpdepfile Temporary file to use when outputing dependencies.
cannam@86 48 libtool Whether libtool is used (yes/no).
cannam@86 49
cannam@86 50 Report bugs to <bug-automake@gnu.org>.
cannam@86 51 EOF
cannam@86 52 exit $?
cannam@86 53 ;;
cannam@86 54 -v | --v*)
cannam@86 55 echo "depcomp $scriptversion"
cannam@86 56 exit $?
cannam@86 57 ;;
cannam@86 58 esac
cannam@86 59
cannam@86 60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
cannam@86 61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
cannam@86 62 exit 1
cannam@86 63 fi
cannam@86 64
cannam@86 65 # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
cannam@86 66 depfile=${depfile-`echo "$object" |
cannam@86 67 sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
cannam@86 68 tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
cannam@86 69
cannam@86 70 rm -f "$tmpdepfile"
cannam@86 71
cannam@86 72 # Some modes work just like other modes, but use different flags. We
cannam@86 73 # parameterize here, but still list the modes in the big case below,
cannam@86 74 # to make depend.m4 easier to write. Note that we *cannot* use a case
cannam@86 75 # here, because this file can only contain one case statement.
cannam@86 76 if test "$depmode" = hp; then
cannam@86 77 # HP compiler uses -M and no extra arg.
cannam@86 78 gccflag=-M
cannam@86 79 depmode=gcc
cannam@86 80 fi
cannam@86 81
cannam@86 82 if test "$depmode" = dashXmstdout; then
cannam@86 83 # This is just like dashmstdout with a different argument.
cannam@86 84 dashmflag=-xM
cannam@86 85 depmode=dashmstdout
cannam@86 86 fi
cannam@86 87
cannam@86 88 cygpath_u="cygpath -u -f -"
cannam@86 89 if test "$depmode" = msvcmsys; then
cannam@86 90 # This is just like msvisualcpp but w/o cygpath translation.
cannam@86 91 # Just convert the backslash-escaped backslashes to single forward
cannam@86 92 # slashes to satisfy depend.m4
cannam@86 93 cygpath_u="sed s,\\\\\\\\,/,g"
cannam@86 94 depmode=msvisualcpp
cannam@86 95 fi
cannam@86 96
cannam@86 97 case "$depmode" in
cannam@86 98 gcc3)
cannam@86 99 ## gcc 3 implements dependency tracking that does exactly what
cannam@86 100 ## we want. Yay! Note: for some reason libtool 1.4 doesn't like
cannam@86 101 ## it if -MD -MP comes after the -MF stuff. Hmm.
cannam@86 102 ## Unfortunately, FreeBSD c89 acceptance of flags depends upon
cannam@86 103 ## the command line argument order; so add the flags where they
cannam@86 104 ## appear in depend2.am. Note that the slowdown incurred here
cannam@86 105 ## affects only configure: in makefiles, %FASTDEP% shortcuts this.
cannam@86 106 for arg
cannam@86 107 do
cannam@86 108 case $arg in
cannam@86 109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
cannam@86 110 *) set fnord "$@" "$arg" ;;
cannam@86 111 esac
cannam@86 112 shift # fnord
cannam@86 113 shift # $arg
cannam@86 114 done
cannam@86 115 "$@"
cannam@86 116 stat=$?
cannam@86 117 if test $stat -eq 0; then :
cannam@86 118 else
cannam@86 119 rm -f "$tmpdepfile"
cannam@86 120 exit $stat
cannam@86 121 fi
cannam@86 122 mv "$tmpdepfile" "$depfile"
cannam@86 123 ;;
cannam@86 124
cannam@86 125 gcc)
cannam@86 126 ## There are various ways to get dependency output from gcc. Here's
cannam@86 127 ## why we pick this rather obscure method:
cannam@86 128 ## - Don't want to use -MD because we'd like the dependencies to end
cannam@86 129 ## up in a subdir. Having to rename by hand is ugly.
cannam@86 130 ## (We might end up doing this anyway to support other compilers.)
cannam@86 131 ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
cannam@86 132 ## -MM, not -M (despite what the docs say).
cannam@86 133 ## - Using -M directly means running the compiler twice (even worse
cannam@86 134 ## than renaming).
cannam@86 135 if test -z "$gccflag"; then
cannam@86 136 gccflag=-MD,
cannam@86 137 fi
cannam@86 138 "$@" -Wp,"$gccflag$tmpdepfile"
cannam@86 139 stat=$?
cannam@86 140 if test $stat -eq 0; then :
cannam@86 141 else
cannam@86 142 rm -f "$tmpdepfile"
cannam@86 143 exit $stat
cannam@86 144 fi
cannam@86 145 rm -f "$depfile"
cannam@86 146 echo "$object : \\" > "$depfile"
cannam@86 147 alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
cannam@86 148 ## The second -e expression handles DOS-style file names with drive letters.
cannam@86 149 sed -e 's/^[^:]*: / /' \
cannam@86 150 -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
cannam@86 151 ## This next piece of magic avoids the `deleted header file' problem.
cannam@86 152 ## The problem is that when a header file which appears in a .P file
cannam@86 153 ## is deleted, the dependency causes make to die (because there is
cannam@86 154 ## typically no way to rebuild the header). We avoid this by adding
cannam@86 155 ## dummy dependencies for each header file. Too bad gcc doesn't do
cannam@86 156 ## this for us directly.
cannam@86 157 tr ' ' '
cannam@86 158 ' < "$tmpdepfile" |
cannam@86 159 ## Some versions of gcc put a space before the `:'. On the theory
cannam@86 160 ## that the space means something, we add a space to the output as
cannam@86 161 ## well.
cannam@86 162 ## Some versions of the HPUX 10.20 sed can't process this invocation
cannam@86 163 ## correctly. Breaking it into two sed invocations is a workaround.
cannam@86 164 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
cannam@86 165 rm -f "$tmpdepfile"
cannam@86 166 ;;
cannam@86 167
cannam@86 168 hp)
cannam@86 169 # This case exists only to let depend.m4 do its work. It works by
cannam@86 170 # looking at the text of this script. This case will never be run,
cannam@86 171 # since it is checked for above.
cannam@86 172 exit 1
cannam@86 173 ;;
cannam@86 174
cannam@86 175 sgi)
cannam@86 176 if test "$libtool" = yes; then
cannam@86 177 "$@" "-Wp,-MDupdate,$tmpdepfile"
cannam@86 178 else
cannam@86 179 "$@" -MDupdate "$tmpdepfile"
cannam@86 180 fi
cannam@86 181 stat=$?
cannam@86 182 if test $stat -eq 0; then :
cannam@86 183 else
cannam@86 184 rm -f "$tmpdepfile"
cannam@86 185 exit $stat
cannam@86 186 fi
cannam@86 187 rm -f "$depfile"
cannam@86 188
cannam@86 189 if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
cannam@86 190 echo "$object : \\" > "$depfile"
cannam@86 191
cannam@86 192 # Clip off the initial element (the dependent). Don't try to be
cannam@86 193 # clever and replace this with sed code, as IRIX sed won't handle
cannam@86 194 # lines with more than a fixed number of characters (4096 in
cannam@86 195 # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
cannam@86 196 # the IRIX cc adds comments like `#:fec' to the end of the
cannam@86 197 # dependency line.
cannam@86 198 tr ' ' '
cannam@86 199 ' < "$tmpdepfile" \
cannam@86 200 | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
cannam@86 201 tr '
cannam@86 202 ' ' ' >> "$depfile"
cannam@86 203 echo >> "$depfile"
cannam@86 204
cannam@86 205 # The second pass generates a dummy entry for each header file.
cannam@86 206 tr ' ' '
cannam@86 207 ' < "$tmpdepfile" \
cannam@86 208 | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
cannam@86 209 >> "$depfile"
cannam@86 210 else
cannam@86 211 # The sourcefile does not contain any dependencies, so just
cannam@86 212 # store a dummy comment line, to avoid errors with the Makefile
cannam@86 213 # "include basename.Plo" scheme.
cannam@86 214 echo "#dummy" > "$depfile"
cannam@86 215 fi
cannam@86 216 rm -f "$tmpdepfile"
cannam@86 217 ;;
cannam@86 218
cannam@86 219 aix)
cannam@86 220 # The C for AIX Compiler uses -M and outputs the dependencies
cannam@86 221 # in a .u file. In older versions, this file always lives in the
cannam@86 222 # current directory. Also, the AIX compiler puts `$object:' at the
cannam@86 223 # start of each line; $object doesn't have directory information.
cannam@86 224 # Version 6 uses the directory in both cases.
cannam@86 225 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
cannam@86 226 test "x$dir" = "x$object" && dir=
cannam@86 227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
cannam@86 228 if test "$libtool" = yes; then
cannam@86 229 tmpdepfile1=$dir$base.u
cannam@86 230 tmpdepfile2=$base.u
cannam@86 231 tmpdepfile3=$dir.libs/$base.u
cannam@86 232 "$@" -Wc,-M
cannam@86 233 else
cannam@86 234 tmpdepfile1=$dir$base.u
cannam@86 235 tmpdepfile2=$dir$base.u
cannam@86 236 tmpdepfile3=$dir$base.u
cannam@86 237 "$@" -M
cannam@86 238 fi
cannam@86 239 stat=$?
cannam@86 240
cannam@86 241 if test $stat -eq 0; then :
cannam@86 242 else
cannam@86 243 rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
cannam@86 244 exit $stat
cannam@86 245 fi
cannam@86 246
cannam@86 247 for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
cannam@86 248 do
cannam@86 249 test -f "$tmpdepfile" && break
cannam@86 250 done
cannam@86 251 if test -f "$tmpdepfile"; then
cannam@86 252 # Each line is of the form `foo.o: dependent.h'.
cannam@86 253 # Do two passes, one to just change these to
cannam@86 254 # `$object: dependent.h' and one to simply `dependent.h:'.
cannam@86 255 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
cannam@86 256 # That's a tab and a space in the [].
cannam@86 257 sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
cannam@86 258 else
cannam@86 259 # The sourcefile does not contain any dependencies, so just
cannam@86 260 # store a dummy comment line, to avoid errors with the Makefile
cannam@86 261 # "include basename.Plo" scheme.
cannam@86 262 echo "#dummy" > "$depfile"
cannam@86 263 fi
cannam@86 264 rm -f "$tmpdepfile"
cannam@86 265 ;;
cannam@86 266
cannam@86 267 icc)
cannam@86 268 # Intel's C compiler understands `-MD -MF file'. However on
cannam@86 269 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
cannam@86 270 # ICC 7.0 will fill foo.d with something like
cannam@86 271 # foo.o: sub/foo.c
cannam@86 272 # foo.o: sub/foo.h
cannam@86 273 # which is wrong. We want:
cannam@86 274 # sub/foo.o: sub/foo.c
cannam@86 275 # sub/foo.o: sub/foo.h
cannam@86 276 # sub/foo.c:
cannam@86 277 # sub/foo.h:
cannam@86 278 # ICC 7.1 will output
cannam@86 279 # foo.o: sub/foo.c sub/foo.h
cannam@86 280 # and will wrap long lines using \ :
cannam@86 281 # foo.o: sub/foo.c ... \
cannam@86 282 # sub/foo.h ... \
cannam@86 283 # ...
cannam@86 284
cannam@86 285 "$@" -MD -MF "$tmpdepfile"
cannam@86 286 stat=$?
cannam@86 287 if test $stat -eq 0; then :
cannam@86 288 else
cannam@86 289 rm -f "$tmpdepfile"
cannam@86 290 exit $stat
cannam@86 291 fi
cannam@86 292 rm -f "$depfile"
cannam@86 293 # Each line is of the form `foo.o: dependent.h',
cannam@86 294 # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
cannam@86 295 # Do two passes, one to just change these to
cannam@86 296 # `$object: dependent.h' and one to simply `dependent.h:'.
cannam@86 297 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
cannam@86 298 # Some versions of the HPUX 10.20 sed can't process this invocation
cannam@86 299 # correctly. Breaking it into two sed invocations is a workaround.
cannam@86 300 sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
cannam@86 301 sed -e 's/$/ :/' >> "$depfile"
cannam@86 302 rm -f "$tmpdepfile"
cannam@86 303 ;;
cannam@86 304
cannam@86 305 hp2)
cannam@86 306 # The "hp" stanza above does not work with aCC (C++) and HP's ia64
cannam@86 307 # compilers, which have integrated preprocessors. The correct option
cannam@86 308 # to use with these is +Maked; it writes dependencies to a file named
cannam@86 309 # 'foo.d', which lands next to the object file, wherever that
cannam@86 310 # happens to be.
cannam@86 311 # Much of this is similar to the tru64 case; see comments there.
cannam@86 312 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
cannam@86 313 test "x$dir" = "x$object" && dir=
cannam@86 314 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
cannam@86 315 if test "$libtool" = yes; then
cannam@86 316 tmpdepfile1=$dir$base.d
cannam@86 317 tmpdepfile2=$dir.libs/$base.d
cannam@86 318 "$@" -Wc,+Maked
cannam@86 319 else
cannam@86 320 tmpdepfile1=$dir$base.d
cannam@86 321 tmpdepfile2=$dir$base.d
cannam@86 322 "$@" +Maked
cannam@86 323 fi
cannam@86 324 stat=$?
cannam@86 325 if test $stat -eq 0; then :
cannam@86 326 else
cannam@86 327 rm -f "$tmpdepfile1" "$tmpdepfile2"
cannam@86 328 exit $stat
cannam@86 329 fi
cannam@86 330
cannam@86 331 for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
cannam@86 332 do
cannam@86 333 test -f "$tmpdepfile" && break
cannam@86 334 done
cannam@86 335 if test -f "$tmpdepfile"; then
cannam@86 336 sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
cannam@86 337 # Add `dependent.h:' lines.
cannam@86 338 sed -ne '2,${
cannam@86 339 s/^ *//
cannam@86 340 s/ \\*$//
cannam@86 341 s/$/:/
cannam@86 342 p
cannam@86 343 }' "$tmpdepfile" >> "$depfile"
cannam@86 344 else
cannam@86 345 echo "#dummy" > "$depfile"
cannam@86 346 fi
cannam@86 347 rm -f "$tmpdepfile" "$tmpdepfile2"
cannam@86 348 ;;
cannam@86 349
cannam@86 350 tru64)
cannam@86 351 # The Tru64 compiler uses -MD to generate dependencies as a side
cannam@86 352 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
cannam@86 353 # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
cannam@86 354 # dependencies in `foo.d' instead, so we check for that too.
cannam@86 355 # Subdirectories are respected.
cannam@86 356 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
cannam@86 357 test "x$dir" = "x$object" && dir=
cannam@86 358 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
cannam@86 359
cannam@86 360 if test "$libtool" = yes; then
cannam@86 361 # With Tru64 cc, shared objects can also be used to make a
cannam@86 362 # static library. This mechanism is used in libtool 1.4 series to
cannam@86 363 # handle both shared and static libraries in a single compilation.
cannam@86 364 # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
cannam@86 365 #
cannam@86 366 # With libtool 1.5 this exception was removed, and libtool now
cannam@86 367 # generates 2 separate objects for the 2 libraries. These two
cannam@86 368 # compilations output dependencies in $dir.libs/$base.o.d and
cannam@86 369 # in $dir$base.o.d. We have to check for both files, because
cannam@86 370 # one of the two compilations can be disabled. We should prefer
cannam@86 371 # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
cannam@86 372 # automatically cleaned when .libs/ is deleted, while ignoring
cannam@86 373 # the former would cause a distcleancheck panic.
cannam@86 374 tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
cannam@86 375 tmpdepfile2=$dir$base.o.d # libtool 1.5
cannam@86 376 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
cannam@86 377 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
cannam@86 378 "$@" -Wc,-MD
cannam@86 379 else
cannam@86 380 tmpdepfile1=$dir$base.o.d
cannam@86 381 tmpdepfile2=$dir$base.d
cannam@86 382 tmpdepfile3=$dir$base.d
cannam@86 383 tmpdepfile4=$dir$base.d
cannam@86 384 "$@" -MD
cannam@86 385 fi
cannam@86 386
cannam@86 387 stat=$?
cannam@86 388 if test $stat -eq 0; then :
cannam@86 389 else
cannam@86 390 rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
cannam@86 391 exit $stat
cannam@86 392 fi
cannam@86 393
cannam@86 394 for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
cannam@86 395 do
cannam@86 396 test -f "$tmpdepfile" && break
cannam@86 397 done
cannam@86 398 if test -f "$tmpdepfile"; then
cannam@86 399 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
cannam@86 400 # That's a tab and a space in the [].
cannam@86 401 sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
cannam@86 402 else
cannam@86 403 echo "#dummy" > "$depfile"
cannam@86 404 fi
cannam@86 405 rm -f "$tmpdepfile"
cannam@86 406 ;;
cannam@86 407
cannam@86 408 #nosideeffect)
cannam@86 409 # This comment above is used by automake to tell side-effect
cannam@86 410 # dependency tracking mechanisms from slower ones.
cannam@86 411
cannam@86 412 dashmstdout)
cannam@86 413 # Important note: in order to support this mode, a compiler *must*
cannam@86 414 # always write the preprocessed file to stdout, regardless of -o.
cannam@86 415 "$@" || exit $?
cannam@86 416
cannam@86 417 # Remove the call to Libtool.
cannam@86 418 if test "$libtool" = yes; then
cannam@86 419 while test "X$1" != 'X--mode=compile'; do
cannam@86 420 shift
cannam@86 421 done
cannam@86 422 shift
cannam@86 423 fi
cannam@86 424
cannam@86 425 # Remove `-o $object'.
cannam@86 426 IFS=" "
cannam@86 427 for arg
cannam@86 428 do
cannam@86 429 case $arg in
cannam@86 430 -o)
cannam@86 431 shift
cannam@86 432 ;;
cannam@86 433 $object)
cannam@86 434 shift
cannam@86 435 ;;
cannam@86 436 *)
cannam@86 437 set fnord "$@" "$arg"
cannam@86 438 shift # fnord
cannam@86 439 shift # $arg
cannam@86 440 ;;
cannam@86 441 esac
cannam@86 442 done
cannam@86 443
cannam@86 444 test -z "$dashmflag" && dashmflag=-M
cannam@86 445 # Require at least two characters before searching for `:'
cannam@86 446 # in the target name. This is to cope with DOS-style filenames:
cannam@86 447 # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
cannam@86 448 "$@" $dashmflag |
cannam@86 449 sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
cannam@86 450 rm -f "$depfile"
cannam@86 451 cat < "$tmpdepfile" > "$depfile"
cannam@86 452 tr ' ' '
cannam@86 453 ' < "$tmpdepfile" | \
cannam@86 454 ## Some versions of the HPUX 10.20 sed can't process this invocation
cannam@86 455 ## correctly. Breaking it into two sed invocations is a workaround.
cannam@86 456 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
cannam@86 457 rm -f "$tmpdepfile"
cannam@86 458 ;;
cannam@86 459
cannam@86 460 dashXmstdout)
cannam@86 461 # This case only exists to satisfy depend.m4. It is never actually
cannam@86 462 # run, as this mode is specially recognized in the preamble.
cannam@86 463 exit 1
cannam@86 464 ;;
cannam@86 465
cannam@86 466 makedepend)
cannam@86 467 "$@" || exit $?
cannam@86 468 # Remove any Libtool call
cannam@86 469 if test "$libtool" = yes; then
cannam@86 470 while test "X$1" != 'X--mode=compile'; do
cannam@86 471 shift
cannam@86 472 done
cannam@86 473 shift
cannam@86 474 fi
cannam@86 475 # X makedepend
cannam@86 476 shift
cannam@86 477 cleared=no eat=no
cannam@86 478 for arg
cannam@86 479 do
cannam@86 480 case $cleared in
cannam@86 481 no)
cannam@86 482 set ""; shift
cannam@86 483 cleared=yes ;;
cannam@86 484 esac
cannam@86 485 if test $eat = yes; then
cannam@86 486 eat=no
cannam@86 487 continue
cannam@86 488 fi
cannam@86 489 case "$arg" in
cannam@86 490 -D*|-I*)
cannam@86 491 set fnord "$@" "$arg"; shift ;;
cannam@86 492 # Strip any option that makedepend may not understand. Remove
cannam@86 493 # the object too, otherwise makedepend will parse it as a source file.
cannam@86 494 -arch)
cannam@86 495 eat=yes ;;
cannam@86 496 -*|$object)
cannam@86 497 ;;
cannam@86 498 *)
cannam@86 499 set fnord "$@" "$arg"; shift ;;
cannam@86 500 esac
cannam@86 501 done
cannam@86 502 obj_suffix=`echo "$object" | sed 's/^.*\././'`
cannam@86 503 touch "$tmpdepfile"
cannam@86 504 ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
cannam@86 505 rm -f "$depfile"
cannam@86 506 cat < "$tmpdepfile" > "$depfile"
cannam@86 507 sed '1,2d' "$tmpdepfile" | tr ' ' '
cannam@86 508 ' | \
cannam@86 509 ## Some versions of the HPUX 10.20 sed can't process this invocation
cannam@86 510 ## correctly. Breaking it into two sed invocations is a workaround.
cannam@86 511 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
cannam@86 512 rm -f "$tmpdepfile" "$tmpdepfile".bak
cannam@86 513 ;;
cannam@86 514
cannam@86 515 cpp)
cannam@86 516 # Important note: in order to support this mode, a compiler *must*
cannam@86 517 # always write the preprocessed file to stdout.
cannam@86 518 "$@" || exit $?
cannam@86 519
cannam@86 520 # Remove the call to Libtool.
cannam@86 521 if test "$libtool" = yes; then
cannam@86 522 while test "X$1" != 'X--mode=compile'; do
cannam@86 523 shift
cannam@86 524 done
cannam@86 525 shift
cannam@86 526 fi
cannam@86 527
cannam@86 528 # Remove `-o $object'.
cannam@86 529 IFS=" "
cannam@86 530 for arg
cannam@86 531 do
cannam@86 532 case $arg in
cannam@86 533 -o)
cannam@86 534 shift
cannam@86 535 ;;
cannam@86 536 $object)
cannam@86 537 shift
cannam@86 538 ;;
cannam@86 539 *)
cannam@86 540 set fnord "$@" "$arg"
cannam@86 541 shift # fnord
cannam@86 542 shift # $arg
cannam@86 543 ;;
cannam@86 544 esac
cannam@86 545 done
cannam@86 546
cannam@86 547 "$@" -E |
cannam@86 548 sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
cannam@86 549 -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
cannam@86 550 sed '$ s: \\$::' > "$tmpdepfile"
cannam@86 551 rm -f "$depfile"
cannam@86 552 echo "$object : \\" > "$depfile"
cannam@86 553 cat < "$tmpdepfile" >> "$depfile"
cannam@86 554 sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
cannam@86 555 rm -f "$tmpdepfile"
cannam@86 556 ;;
cannam@86 557
cannam@86 558 msvisualcpp)
cannam@86 559 # Important note: in order to support this mode, a compiler *must*
cannam@86 560 # always write the preprocessed file to stdout.
cannam@86 561 "$@" || exit $?
cannam@86 562
cannam@86 563 # Remove the call to Libtool.
cannam@86 564 if test "$libtool" = yes; then
cannam@86 565 while test "X$1" != 'X--mode=compile'; do
cannam@86 566 shift
cannam@86 567 done
cannam@86 568 shift
cannam@86 569 fi
cannam@86 570
cannam@86 571 IFS=" "
cannam@86 572 for arg
cannam@86 573 do
cannam@86 574 case "$arg" in
cannam@86 575 -o)
cannam@86 576 shift
cannam@86 577 ;;
cannam@86 578 $object)
cannam@86 579 shift
cannam@86 580 ;;
cannam@86 581 "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
cannam@86 582 set fnord "$@"
cannam@86 583 shift
cannam@86 584 shift
cannam@86 585 ;;
cannam@86 586 *)
cannam@86 587 set fnord "$@" "$arg"
cannam@86 588 shift
cannam@86 589 shift
cannam@86 590 ;;
cannam@86 591 esac
cannam@86 592 done
cannam@86 593 "$@" -E 2>/dev/null |
cannam@86 594 sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
cannam@86 595 rm -f "$depfile"
cannam@86 596 echo "$object : \\" > "$depfile"
cannam@86 597 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
cannam@86 598 echo " " >> "$depfile"
cannam@86 599 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
cannam@86 600 rm -f "$tmpdepfile"
cannam@86 601 ;;
cannam@86 602
cannam@86 603 msvcmsys)
cannam@86 604 # This case exists only to let depend.m4 do its work. It works by
cannam@86 605 # looking at the text of this script. This case will never be run,
cannam@86 606 # since it is checked for above.
cannam@86 607 exit 1
cannam@86 608 ;;
cannam@86 609
cannam@86 610 none)
cannam@86 611 exec "$@"
cannam@86 612 ;;
cannam@86 613
cannam@86 614 *)
cannam@86 615 echo "Unknown depmode $depmode" 1>&2
cannam@86 616 exit 1
cannam@86 617 ;;
cannam@86 618 esac
cannam@86 619
cannam@86 620 exit 0
cannam@86 621
cannam@86 622 # Local Variables:
cannam@86 623 # mode: shell-script
cannam@86 624 # sh-indentation: 2
cannam@86 625 # eval: (add-hook 'write-file-hooks 'time-stamp)
cannam@86 626 # time-stamp-start: "scriptversion="
cannam@86 627 # time-stamp-format: "%:y-%02m-%02d.%02H"
cannam@86 628 # time-stamp-time-zone: "UTC"
cannam@86 629 # time-stamp-end: "; # UTC"
cannam@86 630 # End: