3 # depcomp - compile a program generating dependencies as side-effects
4 # Copyright (C) 1999 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 ## There are various ways to get dependency output from gcc. Here's
53 ## why we pick this rather obscure method:
54 ## - Don't want to use -MD because we'd like the dependencies to end
55 ## up in a subdir. Having to rename by hand is ugly.
56 ## (We might end up doing this anyway to support other compilers.)
57 ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
58 ## -MM, not -M (despite what the docs say).
59 ## - Using -M directly means running the compiler twice (even worse
61 if test -z "$gccflag"; then
64 if "$@" -Wp,"$gccflag$tmpdepfile"; then :
71 echo "$object : \\" > "$depfile"
72 sed 's/^[^:]*: / /' < "$tmpdepfile" >> "$depfile"
73 ## This next piece of magic avoids the `deleted header file' problem.
74 ## The problem is that when a header file which appears in a .P file
75 ## is deleted, the dependency causes make to die (because there is
76 ## typically no way to rebuild the header). We avoid this by adding
77 ## dummy dependencies for each header file. Too bad gcc doesn't do
78 ## this for us directly.
81 ## Some versions of gcc put a space before the `:'. On the theory
82 ## that the space means something, we add a space to the output as
84 ## Some versions of the HPUX 10.20 sed can't process this invocation
85 ## correctly. Breaking it into two sed invocations is a workaround.
86 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
91 # This case exists only to let depend.m4 do its work. It works by
92 # looking at the text of this script. This case will never be run,
93 # since it is checked for above.
98 # The Java front end to gcc doesn't run cpp, so we can't use the -Wp
99 # trick. Instead we must use -M and then rename the resulting .d
100 # file. This is also the case for older versions of gcc, which
101 # don't implement -Wp.
108 FIXME
: rewrite the
file
112 if test "$libtool" = yes; then
113 "$@" "-Wc,-MDupdate,$tmpdepfile"
115 "$@" -MDupdate "$tmpdepfile"
118 if test $stat -eq 0; then :
125 echo "$object : \\" > "$depfile"
126 sed 's/^[^:]*: / /' < "$tmpdepfile" >> "$depfile"
128 ' < "$tmpdepfile" | \
129 ## Some versions of the HPUX 10.20 sed can't process this invocation
130 ## correctly. Breaking it into two sed invocations is a workaround.
131 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
136 # This comment above is used by automake to tell side-effect
137 # dependency tracking mechanisms from slower ones.
140 # Important note: in order to support this mode, a compiler *must*
141 # always write the proprocessed file to stdout, regardless of -o,
142 # because we must use -o when running libtool.
143 test -z "$dashmflag" && dashmflag
=-M
146 *" --mode=compile "*) # this is libtool, let us make it quiet
148 do # cycle over the arguments
151 # insert --quiet before "--mode=compile"
152 set fnord
"$@" --quiet
156 set fnord
"$@" "$arg"
162 "$@" $dashmflag |
sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
168 if test "$stat" != 0; then exit $stat; fi
170 cat < "$tmpdepfile" > "$depfile"
172 ' < "$tmpdepfile" | \
173 ## Some versions of the HPUX 10.20 sed can't process this invocation
174 ## correctly. Breaking it into two sed invocations is a workaround.
175 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
180 # This case only exists to satisfy depend.m4. It is never actually
181 # run, as this mode is specially recognized in the preamble.
197 set fnord
"$@" "$arg"; shift;;
201 set fnord
"$@" "$arg"; shift;;
204 obj_suffix
="`echo $object | sed 's/^.*\././'`"
206 ${MAKEDEPEND-makedepend} 2>/dev
/null
-o"$obj_suffix" -f"$tmpdepfile" "$@"
212 if test "$stat" != 0; then exit $stat; fi
214 cat < "$tmpdepfile" > "$depfile"
215 tail +3 "$tmpdepfile" |
tr ' ' '
217 ## Some versions of the HPUX 10.20 sed can't process this invocation
218 ## correctly. Breaking it into two sed invocations is a workaround.
219 sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' |
sed -e 's/$/ :/' >> "$depfile"
220 rm -f "$tmpdepfile" "$tmpdepfile".bak
224 # Important note: in order to support this mode, a compiler *must*
225 # always write the proprocessed file to stdout, regardless of -o,
226 # because we must use -o when running libtool.
229 *" --mode=compile "*)
231 do # cycle over the arguments
234 # insert --quiet before "--mode=compile"
235 set fnord
"$@" --quiet
239 set fnord
"$@" "$arg"
246 sed -n '/^# [0-9][0-9]* "\([^"]*\)"/ s::'"$object"'\: \1:p' > "$tmpdepfile"
252 if test "$stat" != 0; then exit $stat; fi
254 cat < "$tmpdepfile" > "$depfile"
255 sed < "$tmpdepfile" -e 's/^[^:]*: //' -e 's/$/ :/' >> "$depfile"
264 echo "Unknown depmode $depmode" 1>&2