TIVI-153: add as dependency for iputils
[profile/ivi/xmlto.git] / compile
1 #! /bin/sh
2 # Wrapper for compilers which do not understand `-c -o'.
3
4 scriptversion=2003-11-09.00
5
6 # Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
7 # Written by Tom Tromey <tromey@cygnus.com>.
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2, or (at your option)
12 # any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <http://www.gnu.org/licenses/>.
21
22 # As a special exception to the GNU General Public License, if you
23 # distribute this file as part of a program that contains a
24 # configuration script generated by Autoconf, you may include it under
25 # the same distribution terms that you use for the rest of that program.
26
27 # This file is maintained in Automake, please report
28 # bugs to <bug-automake@gnu.org> or send patches to
29 # <automake-patches@gnu.org>.
30
31 case $1 in
32   '')
33      echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
34      exit 1;
35      ;;
36   -h | --h*)
37     cat <<\EOF
38 Usage: compile [--help] [--version] PROGRAM [ARGS]
39
40 Wrapper for compilers which do not understand `-c -o'.
41 Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
42 arguments, and rename the output as expected.
43
44 If you are trying to build a whole package this is not the
45 right script to run: please start by reading the file `INSTALL'.
46
47 Report bugs to <bug-automake@gnu.org>.
48 EOF
49     exit 0
50     ;;
51   -v | --v*)
52     echo "compile $scriptversion"
53     exit 0
54     ;;
55 esac
56
57
58 prog=$1
59 shift
60
61 ofile=
62 cfile=
63 args=
64 while test $# -gt 0; do
65   case "$1" in
66     -o)
67       # configure might choose to run compile as `compile cc -o foo foo.c'.
68       # So we do something ugly here.
69       ofile=$2
70       shift
71       case "$ofile" in
72         *.o | *.obj)
73           ;;
74         *)
75           args="$args -o $ofile"
76           ofile=
77           ;;
78       esac
79        ;;
80     *.c)
81       cfile=$1
82       args="$args $1"
83       ;;
84     *)
85       args="$args $1"
86       ;;
87   esac
88   shift
89 done
90
91 if test -z "$ofile" || test -z "$cfile"; then
92   # If no `-o' option was seen then we might have been invoked from a
93   # pattern rule where we don't need one.  That is ok -- this is a
94   # normal compilation that the losing compiler can handle.  If no
95   # `.c' file was seen then we are probably linking.  That is also
96   # ok.
97   exec "$prog" $args
98 fi
99
100 # Name of file we expect compiler to create.
101 cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
102
103 # Create the lock directory.
104 # Note: use `[/.-]' here to ensure that we don't use the same name
105 # that we are using for the .o file.  Also, base the name on the expected
106 # object file name, since that is what matters with a parallel build.
107 lockdir=`echo $cofile | sed -e 's|[/.-]|_|g'`.d
108 while true; do
109   if mkdir $lockdir > /dev/null 2>&1; then
110     break
111   fi
112   sleep 1
113 done
114 # FIXME: race condition here if user kills between mkdir and trap.
115 trap "rmdir $lockdir; exit 1" 1 2 15
116
117 # Run the compile.
118 "$prog" $args
119 status=$?
120
121 if test -f "$cofile"; then
122   mv "$cofile" "$ofile"
123 fi
124
125 rmdir $lockdir
126 exit $status
127
128 # Local Variables:
129 # mode: shell-script
130 # sh-indentation: 2
131 # eval: (add-hook 'write-file-hooks 'time-stamp)
132 # time-stamp-start: "scriptversion="
133 # time-stamp-format: "%:y-%02m-%02d.%02H"
134 # time-stamp-end: "$"
135 # End: