| 1 | #! /bin/sh
|
|---|
| 2 | # Wrapper for compilers which do not understand `-c -o'.
|
|---|
| 3 |
|
|---|
| 4 | scriptversion=2005-05-14.22
|
|---|
| 5 |
|
|---|
| 6 | # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|---|
| 7 | # Written by Tom Tromey <[email protected]>.
|
|---|
| 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, write to the Free Software
|
|---|
| 21 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|---|
| 22 |
|
|---|
| 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.
|
|---|
| 27 |
|
|---|
| 28 | # This file is maintained in Automake, please report
|
|---|
| 29 | # bugs to <[email protected]> or send patches to
|
|---|
| 30 | # <[email protected]>.
|
|---|
| 31 |
|
|---|
| 32 | case $1 in
|
|---|
| 33 | '')
|
|---|
| 34 | echo "$0: No command. Try \`$0 --help' for more information." 1>&2
|
|---|
| 35 | exit 1;
|
|---|
| 36 | ;;
|
|---|
| 37 | -h | --h*)
|
|---|
| 38 | cat <<\EOF
|
|---|
| 39 | Usage: compile [--help] [--version] PROGRAM [ARGS]
|
|---|
| 40 |
|
|---|
| 41 | Wrapper for compilers which do not understand `-c -o'.
|
|---|
| 42 | Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
|
|---|
| 43 | arguments, and rename the output as expected.
|
|---|
| 44 |
|
|---|
| 45 | If you are trying to build a whole package this is not the
|
|---|
| 46 | right script to run: please start by reading the file `INSTALL'.
|
|---|
| 47 |
|
|---|
| 48 | Report bugs to <[email protected]>.
|
|---|
| 49 | EOF
|
|---|
| 50 | exit $?
|
|---|
| 51 | ;;
|
|---|
| 52 | -v | --v*)
|
|---|
| 53 | echo "compile $scriptversion"
|
|---|
| 54 | exit $?
|
|---|
| 55 | ;;
|
|---|
| 56 | esac
|
|---|
| 57 |
|
|---|
| 58 | ofile=
|
|---|
| 59 | cfile=
|
|---|
| 60 | eat=
|
|---|
| 61 |
|
|---|
| 62 | for arg
|
|---|
| 63 | do
|
|---|
| 64 | if test -n "$eat"; then
|
|---|
| 65 | eat=
|
|---|
| 66 | else
|
|---|
| 67 | case $1 in
|
|---|
| 68 | -o)
|
|---|
| 69 | # configure might choose to run compile as `compile cc -o foo foo.c'.
|
|---|
| 70 | # So we strip `-o arg' only if arg is an object.
|
|---|
| 71 | eat=1
|
|---|
| 72 | case $2 in
|
|---|
| 73 | *.o | *.obj)
|
|---|
| 74 | ofile=$2
|
|---|
| 75 | ;;
|
|---|
| 76 | *)
|
|---|
| 77 | set x "$@" -o "$2"
|
|---|
| 78 | shift
|
|---|
| 79 | ;;
|
|---|
| 80 | esac
|
|---|
| 81 | ;;
|
|---|
| 82 | *.c)
|
|---|
| 83 | cfile=$1
|
|---|
| 84 | set x "$@" "$1"
|
|---|
| 85 | shift
|
|---|
| 86 | ;;
|
|---|
| 87 | *)
|
|---|
| 88 | set x "$@" "$1"
|
|---|
|
|---|