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