3 # depcomp - compile a program generating dependencies as side-effects
4 # Copyright 1999, 2000 Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 # Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
23 if test -z "$depmode" ||
test -z "$source" ||
test -z "$object"; then
24 echo "depcomp: Variables source, object and depmode must be set" 1>&2
27 # `libtool' can also be set to `yes' or `no'.
29 depfile
=${depfile-`echo "$object" | sed 's,\([^/]*\)$,.deps/\1,;s/\.\([^.]*\)$/.P\1/'`}
30 tmpdepfile
=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
34 # Some modes work just like other modes, but use different flags. We
35 # parameterize here, but still list the modes in the big case below,
36 # to make depend.m4 easier to write. Note that we *cannot* use a case
37 # here, because this file can only contain one case statement.
38 if test "$depmode" = hp
; then
39 # HP compiler uses -M and no extra arg.
44 if test "$depmode" = dashXmstdout
; then
45 # This is just like dashmstdout with a different argument.
52 ## gcc 3 implements dependency tracking that does exactly what
54 exec "$@" -MT "$object" -MF "$depfile" -MD -MP
58 ## There are various ways to get dependency output from gcc. Here's
59 ## why we pick this rather obscure method:
60 ## - Don't want to use -MD because we'd like the dependencies to end
61 ## up in a subdir. Having to rename by hand is ugly.
62 ## (We might end up doing this anyway to support other compilers.)
63 ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
64 ## -MM, not -M (despite what the docs say).
65 ## - Using -M directly means running the compiler twice (even worse
67 if test -z "$gccflag"; then
70 if "$@" -Wp,"$gccflag$tmpdepfile"; then :
77 echo "$object : \\" > "$depfile"
78 alpha
=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
79 ## The second -e expression handles DOS-style file names with drive letters.
80 sed -e 's/^[^:]*: / /' \
81 -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
82 ## This next piece of magic avoids the `deleted header file' problem.
83 ## The problem is that when a header file which appears in a .P file
84 ## is deleted, the dependency causes make to die (because there is
85 ## typically no way to rebuild the header). We avoid this by adding
86 ## dummy dependencies for each header file. Too bad gcc doesn't do
87 ## this for us directly.
90 ## Some versions of gcc put a space before the `:'. On the theory
91 ## that the space means something, we add a space to the output as
93 ## Some versions of the HPUX 10.20 sed can't process this invocation
94 ## correctly. Breaking it into two sed invocations is a workaround.
95 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
100 # This case exists only to let depend.m4 do its work. It works by
101 # looking at the text of this script. This case will never be run,
102 # since it is checked for above.
107 if test "$libtool" = yes; then
108 "$@" "-Wp,-MDupdate,$tmpdepfile"
110 "$@" -MDupdate "$tmpdepfile"
113 if test $stat -eq 0; then :
120 if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
121 echo "$object : \\" > "$depfile"
123 # Clip off the initial element (the dependent). Don't try to be
124 # clever and replace this with sed code, as IRIX sed won't handle
125 # lines with more than a fixed number of characters (4096 in
126 # IRIX 6.2 sed, 8192 in IRIX 6.5).
128 ' < "$tmpdepfile" |
sed 's/^[^\.]*\.o://' |
tr '
132 ' < "$tmpdepfile" | \
133 ## Some versions of the HPUX 10.20 sed can't process this invocation
134 ## correctly. Breaking it into two sed invocations is a workaround.
135 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
137 # The sourcefile does not contain any dependencies, so just
138 # store a dummy comment line, to avoid errors with the Makefile
139 # "include basename.Plo" scheme.
140 echo "#dummy" > "$depfile"
146 # The C for AIX Compiler uses -M and outputs the dependencies
148 tmpdepfile
=`echo "$object" | sed 's/\(.*\)\..*$/\1.u/'`
149 if test "$libtool" = yes; then
156 if test $stat -eq 0; then :
162 if test -f "$tmpdepfile"; then
163 echo "$object : \\" > "$depfile"
165 # Clip off the initial element (the dependent). Don't try to be
166 # clever and replace this with sed code, as IRIX sed won't handle
167 # lines with more than a fixed number of characters (4096 in
168 # IRIX 6.2 sed, 8192 in IRIX 6.5).
170 ' < "$tmpdepfile" |
sed 's/^[^\.]*\.o://' |
tr '
174 ' < "$tmpdepfile" | \
175 ## Some versions of the HPUX 10.20 sed can't process this invocation
176 ## correctly. Breaking it into two sed invocations is a workaround.
177 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
179 # The sourcefile does not contain any dependencies, so just
180 # store a dummy comment line, to avoid errors with the Makefile
181 # "include basename.Plo" scheme.
182 echo "#dummy" > "$depfile"
188 # This comment above is used by automake to tell side-effect
189 # dependency tracking mechanisms from slower ones.
192 # Important note: in order to support this mode, a compiler *must*
193 # always write the proprocessed file to stdout, regardless of -o,
194 # because we must use -o when running libtool.
195 test -z "$dashmflag" && dashmflag
=-M
198 *" --mode=compile "*) # this is libtool, let us make it quiet
200 do # cycle over the arguments
203 # insert --quiet before "--mode=compile"
204 set fnord
"$@" --quiet
208 set fnord
"$@" "$arg"
214 "$@" $dashmflag |
sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
220 if test "$stat" != 0; then exit $stat; fi
222 cat < "$tmpdepfile" > "$depfile"
224 ' < "$tmpdepfile" | \
225 ## Some versions of the HPUX 10.20 sed can't process this invocation
226 ## correctly. Breaking it into two sed invocations is a workaround.
227 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
232 # This case only exists to satisfy depend.m4. It is never actually
233 # run, as this mode is specially recognized in the preamble.
249 set fnord
"$@" "$arg"; shift;;
253 set fnord
"$@" "$arg"; shift;;
256 obj_suffix
="`echo $object | sed 's/^.*\././'`"
258 ${MAKEDEPEND-makedepend} 2>/dev
/null
-o"$obj_suffix" -f"$tmpdepfile" "$@"
264 if test "$stat" != 0; then exit $stat; fi
266 cat < "$tmpdepfile" > "$depfile"
267 tail +3 "$tmpdepfile" |
tr ' ' '
269 ## Some versions of the HPUX 10.20 sed can't process this invocation
270 ## correctly. Breaking it into two sed invocations is a workaround.
271 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
272 rm -f "$tmpdepfile" "$tmpdepfile".bak
276 # Important note: in order to support this mode, a compiler *must*
277 # always write the proprocessed file to stdout, regardless of -o,
278 # because we must use -o when running libtool.
281 *" --mode=compile "*)
283 do # cycle over the arguments
286 # insert --quiet before "--mode=compile"
287 set fnord
"$@" --quiet
291 set fnord
"$@" "$arg"
298 sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
299 sed '$ s: \\$::' > "$tmpdepfile"
305 if test "$stat" != 0; then exit $stat; fi
307 echo "$object : \\" > "$depfile"
308 cat < "$tmpdepfile" >> "$depfile"
309 sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
314 # Important note: in order to support this mode, a compiler *must*
315 # always write the proprocessed file to stdout, regardless of -o,
316 # because we must use -o when running libtool.
319 *" --mode=compile "*)
321 do # cycle over the arguments
324 # insert --quiet before "--mode=compile"
325 set fnord
"$@" --quiet
329 set fnord
"$@" "$arg"
336 sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' |
sort |
uniq > "$tmpdepfile"
342 if test "$stat" != 0; then exit $stat; fi
344 echo "$object : \\" > "$depfile"
345 .
"$tmpdepfile" |
sed 's% %\\ %g' |
sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
346 echo " " >> "$depfile"
347 .
"$tmpdepfile" |
sed 's% %\\ %g' |
sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
356 echo "Unknown depmode $depmode" 1>&2