1 | #!/bin/sh
|
---|
2 | # Shell script to build GNU Make in the absence of any `make' program.
|
---|
3 | # @configure_input@
|
---|
4 |
|
---|
5 | # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
---|
6 | # 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
---|
7 | # This file is part of GNU Make.
|
---|
8 | #
|
---|
9 | # GNU Make is free software; you can redistribute it and/or modify it under
|
---|
10 | # the terms of the GNU General Public License as published by the Free Software
|
---|
11 | # Foundation; either version 3 of the License, or (at your option) any later
|
---|
12 | # version.
|
---|
13 | #
|
---|
14 | # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
15 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
16 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
---|
17 | # details.
|
---|
18 | #
|
---|
19 | # You should have received a copy of the GNU General Public License along with
|
---|
20 | # this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 |
|
---|
22 | # See Makefile.in for comments describing these variables.
|
---|
23 |
|
---|
24 | srcdir='@srcdir@'
|
---|
25 | CC='@CC@'
|
---|
26 | CFLAGS='@CFLAGS@'
|
---|
27 | CPPFLAGS='@CPPFLAGS@'
|
---|
28 | LDFLAGS='@LDFLAGS@'
|
---|
29 | ALLOCA='@ALLOCA@'
|
---|
30 | LOADLIBES='@LIBS@ @LIBINTL@'
|
---|
31 | eval extras=\'@LIBOBJS@\'
|
---|
32 | REMOTE='@REMOTE@'
|
---|
33 | GLOBLIB='@GLOBLIB@'
|
---|
34 | PATH_SEPARATOR='@PATH_SEPARATOR@'
|
---|
35 | OBJEXT='@OBJEXT@'
|
---|
36 | EXEEXT='@EXEEXT@'
|
---|
37 |
|
---|
38 | # Common prefix for machine-independent installed files.
|
---|
39 | prefix='@prefix@'
|
---|
40 | # Common prefix for machine-dependent installed files.
|
---|
41 | exec_prefix=`eval echo @exec_prefix@`
|
---|
42 | # Directory to find libraries in for `-lXXX'.
|
---|
43 | libdir=${exec_prefix}/lib
|
---|
44 | # Directory to search by default for included makefiles.
|
---|
45 | includedir=${prefix}/include
|
---|
46 |
|
---|
47 | localedir=${prefix}/share/locale
|
---|
48 | aliaspath=${localedir}${PATH_SEPARATOR}.
|
---|
49 |
|
---|
50 | defines="-DALIASPATH=\"${aliaspath}\" -DLOCALEDIR=\"${localedir}\" -DLIBDIR=\"${libdir}\" -DINCLUDEDIR=\"${includedir}\""' @DEFS@'
|
---|
51 |
|
---|
52 | # Exit as soon as any command fails.
|
---|
53 | set -e
|
---|
54 |
|
---|
55 | # These are all the objects we need to link together.
|
---|
56 | objs="%objs% remote-${REMOTE}.${OBJEXT} ${extras} ${ALLOCA}"
|
---|
57 |
|
---|
58 | if [ x"$GLOBLIB" != x ]; then
|
---|
59 | objs="$objs %globobjs%"
|
---|
60 | globinc=-I${srcdir}/glob
|
---|
61 | fi
|
---|
62 |
|
---|
63 | # Compile the source files into those objects.
|
---|
64 | for file in `echo ${objs} | sed 's/\.'${OBJEXT}'/.c/g'`; do
|
---|
65 | echo compiling ${file}...
|
---|
66 | $CC $defines $CPPFLAGS $CFLAGS \
|
---|
67 | -c -I. -I${srcdir} ${globinc} ${srcdir}/$file
|
---|
68 | done
|
---|
69 |
|
---|
70 | # The object files were actually all put in the current directory.
|
---|
71 | # Remove the source directory names from the list.
|
---|
72 | srcobjs="$objs"
|
---|
73 | objs=
|
---|
74 | for obj in $srcobjs; do
|
---|
75 | objs="$objs `basename $obj`"
|
---|
76 | done
|
---|
77 |
|
---|
78 | # Link all the objects together.
|
---|
79 | echo linking make...
|
---|
80 | $CC $CFLAGS $LDFLAGS $objs $LOADLIBES -o makenew${EXEEXT}
|
---|
81 | echo done
|
---|
82 | mv -f makenew${EXEEXT} make${EXEEXT}
|
---|