2 # depcomp - compile a program generating dependencies as side-effects
4 scriptversion
=2004-04-25.13
6 # Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 # As a special exception to the GNU General Public License, if you
24 # distribute this file as part of a program that contains a
25 # configuration script generated by Autoconf, you may include it under
26 # the same distribution terms that you use for the rest of that program.
28 # Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
32 echo "$0: No command. Try \`$0 --help' for more information." 1>&2
37 Usage
: depcomp
[--help] [--version] PROGRAM
[ARGS
]
39 Run PROGRAMS ARGS to compile a
file, generating dependencies
42 Environment variables
:
43 depmode Dependency tracking mode.
44 source Source
file read by
`PROGRAMS ARGS'.
45 object Object file output by `PROGRAMS ARGS
'.
46 depfile Dependency file to output.
47 tmpdepfile Temporary file to use when outputing dependencies.
48 libtool Whether libtool is used (yes/no).
50 Report bugs to <bug-automake@gnu.org>.
55 echo "depcomp $scriptversion"
60 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
61 echo "depcomp: Variables source, object and depmode must be set" 1>&2
64 # `libtool' can also be
set to
`yes' or `no
'.
66 if test -z "$depfile"; then
67 base=`echo "$object" | sed -e 's
,^.
*/,,' -e 's
,\.\
([^.
]*\
)$
,.P\
1,'`
68 dir=`echo "$object" | sed 's
,/.
*$
,/,'`
69 if test "$dir" = "$object"; then
72 # FIXME: should be _deps on DOS.
73 depfile="$dir.deps/$base"
76 tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
80 # Some modes work just like other modes, but use different flags. We
81 # parameterize here, but still list the modes in the big case below,
82 # to make depend.m4 easier to write. Note that we *cannot* use a case
83 # here, because this file can only contain one case statement.
84 if test "$depmode" = hp; then
85 # HP compiler uses -M and no extra arg.
90 if test "$depmode" = dashXmstdout; then
91 # This is just like dashmstdout with a different argument.
98 ## gcc 3 implements dependency tracking that does exactly what
99 ## we want. Yay! Note: for some reason libtool 1.4 doesn't like
100 ## it if -MD -MP comes after the -MF stuff. Hmm.
101 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
103 if test $stat -eq 0; then :
108 mv "$tmpdepfile" "$depfile"
112 ## There are various ways to get dependency output from gcc. Here's
113 ## why we pick this rather obscure method:
114 ## - Don't want to use -MD because we'd like the dependencies to end
115 ## up in a subdir. Having to rename by hand is ugly.
116 ## (We might end up doing this anyway to support other compilers.)
117 ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
118 ## -MM, not -M (despite what the docs say).
119 ## - Using -M directly means running the compiler twice (even worse
121 if test -z "$gccflag"; then
124 "$@" -Wp,"$gccflag$tmpdepfile"
126 if test $stat -eq 0; then :
132 echo "$object : \\" > "$depfile"
133 alpha
=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
134 ## The second -e expression handles DOS-style file names with drive letters.
135 sed -e 's/^[^:]*: / /' \
136 -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
137 ## This next piece of magic avoids the `deleted header file' problem.
138 ## The problem is that when a header file which appears in a .P file
139 ## is deleted, the dependency causes make to die (because there is
140 ## typically no way to rebuild the header). We avoid this by adding
141 ## dummy dependencies for each header file. Too bad gcc doesn't do
142 ## this for us directly.
145 ## Some versions of gcc put a space before the `:'. On the theory
146 ## that the space means something, we add a space to the output as
148 ## Some versions of the HPUX 10.20 sed can't process this invocation
149 ## correctly. Breaking it into two sed invocations is a workaround.
150 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
155 # This case exists only to let depend.m4 do its work. It works by
156 # looking at the text of this script. This case will never be run,
157 # since it is checked for above.
162 if test "$libtool" = yes; then
163 "$@" "-Wp,-MDupdate,$tmpdepfile"
165 "$@" -MDupdate "$tmpdepfile"
168 if test $stat -eq 0; then :
175 if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
176 echo "$object : \\" > "$depfile"
178 # Clip off the initial element (the dependent). Don't try to be
179 # clever and replace this with sed code, as IRIX sed won't handle
180 # lines with more than a fixed number of characters (4096 in
181 # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
182 # the IRIX cc adds comments like `#:fec' to the end of the
186 |
sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
191 # The second pass generates a dummy entry for each header file.
194 |
sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
197 # The sourcefile does not contain any dependencies, so just
198 # store a dummy comment line, to avoid errors with the Makefile
199 # "include basename.Plo" scheme.
200 echo "#dummy" > "$depfile"
206 # The C for AIX Compiler uses -M and outputs the dependencies
207 # in a .u file. In older versions, this file always lives in the
208 # current directory. Also, the AIX compiler puts `$object:' at the
209 # start of each line; $object doesn't have directory information.
210 # Version 6 uses the directory in both cases.
211 stripped
=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
212 tmpdepfile
="$stripped.u"
213 if test "$libtool" = yes; then
220 if test -f "$tmpdepfile"; then :
222 stripped
=`echo "$stripped" | sed 's,^.*/,,'`
223 tmpdepfile
="$stripped.u"
226 if test $stat -eq 0; then :
232 if test -f "$tmpdepfile"; then
233 outname
="$stripped.o"
234 # Each line is of the form `foo.o: dependent.h'.
235 # Do two passes, one to just change these to
236 # `$object: dependent.h' and one to simply `dependent.h:'.
237 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
238 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
240 # The sourcefile does not contain any dependencies, so just
241 # store a dummy comment line, to avoid errors with the Makefile
242 # "include basename.Plo" scheme.
243 echo "#dummy" > "$depfile"
249 # Intel's C compiler understands `-MD -MF file'. However on
250 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
251 # ICC 7.0 will fill foo.d with something like
254 # which is wrong. We want:
255 # sub/foo.o: sub/foo.c
256 # sub/foo.o: sub/foo.h
259 # ICC 7.1 will output
260 # foo.o: sub/foo.c sub/foo.h
261 # and will wrap long lines using \ :
262 # foo.o: sub/foo.c ... \
266 "$@" -MD -MF "$tmpdepfile"
268 if test $stat -eq 0; then :
274 # Each line is of the form `foo.o: dependent.h',
275 # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
276 # Do two passes, one to just change these to
277 # `$object: dependent.h' and one to simply `dependent.h:'.
278 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
279 # Some versions of the HPUX 10.20 sed can't process this invocation
280 # correctly. Breaking it into two sed invocations is a workaround.
281 sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
282 sed -e 's/$/ :/' >> "$depfile"
287 # The Tru64 compiler uses -MD to generate dependencies as a side
288 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
289 # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
290 # dependencies in `foo.d' instead, so we check for that too.
291 # Subdirectories are respected.
292 dir
=`echo "$object" | sed -e 's|/[^/]*$|/|'`
293 test "x$dir" = "x$object" && dir
=
294 base
=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
296 if test "$libtool" = yes; then
297 # Dependencies are output in .lo.d with libtool 1.4.
298 # They are output in .o.d with libtool 1.5.
299 tmpdepfile1
="$dir.libs/$base.lo.d"
300 tmpdepfile2
="$dir.libs/$base.o.d"
301 tmpdepfile3
="$dir.libs/$base.d"
304 tmpdepfile1
="$dir$base.o.d"
305 tmpdepfile2
="$dir$base.d"
306 tmpdepfile3
="$dir$base.d"
311 if test $stat -eq 0; then :
313 rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
317 if test -f "$tmpdepfile1"; then
318 tmpdepfile
="$tmpdepfile1"
319 elif test -f "$tmpdepfile2"; then
320 tmpdepfile
="$tmpdepfile2"
322 tmpdepfile
="$tmpdepfile3"
324 if test -f "$tmpdepfile"; then
325 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
326 # That's a tab and a space in the [].
327 sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
329 echo "#dummy" > "$depfile"
335 # This comment above is used by automake to tell side-effect
336 # dependency tracking mechanisms from slower ones.
339 # Important note: in order to support this mode, a compiler *must*
340 # always write the preprocessed file to stdout, regardless of -o.
343 # Remove the call to Libtool.
344 if test "$libtool" = yes; then
345 while test $1 != '--mode=compile'; do
351 # Remove `-o $object'.
363 set fnord
"$@" "$arg"
370 test -z "$dashmflag" && dashmflag
=-M
371 # Require at least two characters before searching for `:'
372 # in the target name. This is to cope with DOS-style filenames:
373 # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
375 sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
377 cat < "$tmpdepfile" > "$depfile"
379 ' < "$tmpdepfile" | \
380 ## Some versions of the HPUX 10.20 sed can't process this invocation
381 ## correctly. Breaking it into two sed invocations is a workaround.
382 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
387 # This case only exists to satisfy depend.m4. It is never actually
388 # run, as this mode is specially recognized in the preamble.
394 # Remove any Libtool call
395 if test "$libtool" = yes; then
396 while test $1 != '--mode=compile'; do
412 set fnord
"$@" "$arg"; shift ;;
413 # Strip any option that makedepend may not understand. Remove
414 # the object too, otherwise makedepend will parse it as a source file.
418 set fnord
"$@" "$arg"; shift ;;
421 obj_suffix
="`echo $object | sed 's/^.*\././'`"
423 ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
425 cat < "$tmpdepfile" > "$depfile"
426 sed '1,2d' "$tmpdepfile" |
tr ' ' '
428 ## Some versions of the HPUX 10.20 sed can't process this invocation
429 ## correctly. Breaking it into two sed invocations is a workaround.
430 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
431 rm -f "$tmpdepfile" "$tmpdepfile".bak
435 # Important note: in order to support this mode, a compiler *must*
436 # always write the preprocessed file to stdout.
439 # Remove the call to Libtool.
440 if test "$libtool" = yes; then
441 while test $1 != '--mode=compile'; do
447 # Remove `-o $object'.
459 set fnord
"$@" "$arg"
467 sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
468 sed '$ s: \\$::' > "$tmpdepfile"
470 echo "$object : \\" > "$depfile"
471 cat < "$tmpdepfile" >> "$depfile"
472 sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
477 # Important note: in order to support this mode, a compiler *must*
478 # always write the preprocessed file to stdout, regardless of -o,
479 # because we must use -o when running libtool.
485 "-Gm"|
"/Gm"|
"-Gi"|
"/Gi"|
"-ZI"|
"/ZI")
491 set fnord
"$@" "$arg"
498 sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' |
sort |
uniq > "$tmpdepfile"
500 echo "$object : \\" > "$depfile"
501 .
"$tmpdepfile" |
sed 's% %\\ %g' |
sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
502 echo " " >> "$depfile"
503 .
"$tmpdepfile" |
sed 's% %\\ %g' |
sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
512 echo "Unknown depmode $depmode" 1>&2
522 # eval: (add-hook 'write-file-hooks 'time-stamp)
523 # time-stamp-start: "scriptversion="
524 # time-stamp-format: "%:y-%02m-%02d.%02H"
525 # time-stamp-end: "$"