Changeset 501 in kBuild for vendor/gnumake/current/build.sh.in
- Timestamp:
- Sep 15, 2006 2:30:32 AM (18 years ago)
- File:
-
- 1 edited
-
vendor/gnumake/current/build.sh.in (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/build.sh.in
-
Property svn:executable
set to
*
r152 r501 3 3 # @configure_input@ 4 4 5 # Copyright (C) 1993, 1994, 1997, 2003 Free Software Foundation, Inc. 5 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 6 # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 6 7 # This file is part of GNU Make. 7 8 # 8 # GNU Make is free software; you can redistribute it and/or modify 9 # it under the terms of the GNU General Public License as published by 10 # the Free Software Foundation; either version 2, or (at your option) 11 # any later version. 9 # GNU Make is free software; you can redistribute it and/or modify it under the 10 # terms of the GNU General Public License as published by the Free Software 11 # Foundation; either version 2, or (at your option) any later version. 12 12 # 13 # GNU Make is distributed in the hope that it will be useful, 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 # GNU General Public License for more details. 13 # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 16 # 18 # You should have received a copy of the GNU General Public License 19 # along with GNU Make; see the file COPYING. If not, write to 20 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 21 # Boston, MA 02111-1307, USA. 17 # You should have received a copy of the GNU General Public License along with 18 # GNU Make; see the file COPYING. If not, write to the Free Software 19 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22 20 23 21 # See Makefile.in for comments describing these variables. … … 29 27 LDFLAGS='@LDFLAGS@' 30 28 ALLOCA='@ALLOCA@' 31 LOADLIBES='@LIBS@ '29 LOADLIBES='@LIBS@ @LIBINTL@' 32 30 eval extras=\'@LIBOBJS@\' 33 31 REMOTE='@REMOTE@' … … 55 53 56 54 # These are all the objects we need to link together. 57 objs="ar.${OBJEXT} arscan.${OBJEXT} commands.${OBJEXT} default.${OBJEXT} dir.${OBJEXT} expand.${OBJEXT} file.${OBJEXT} function.${OBJEXT} getopt.${OBJEXT} getopt1.${OBJEXT} implicit.${OBJEXT} job.${OBJEXT} main.${OBJEXT} misc.${OBJEXT} read.${OBJEXT} remake.${OBJEXT} rule.${OBJEXT} signame.${OBJEXT} variable.${OBJEXT} version.${OBJEXT} vpath.${OBJEXT} hash.${OBJEXT} remote-${REMOTE}.${OBJEXT} ${extras} ${ALLOCA}"55 objs="ar.${OBJEXT} arscan.${OBJEXT} commands.${OBJEXT} default.${OBJEXT} dir.${OBJEXT} expand.${OBJEXT} file.${OBJEXT} function.${OBJEXT} getopt.${OBJEXT} getopt1.${OBJEXT} implicit.${OBJEXT} job.${OBJEXT} main.${OBJEXT} misc.${OBJEXT} read.${OBJEXT} remake.${OBJEXT} rule.${OBJEXT} signame.${OBJEXT} strcache.${OBJEXT} variable.${OBJEXT} version.${OBJEXT} vpath.${OBJEXT} hash.${OBJEXT} remote-${REMOTE}.${OBJEXT} ${extras} ${ALLOCA}" 58 56 59 57 if [ x"$GLOBLIB" != x ]; then 60 objs="$objs glob/fnmatch.${OBJEXT} glob/glob.${OBJEXT} )"58 objs="$objs glob/fnmatch.${OBJEXT} glob/glob.${OBJEXT}" 61 59 globinc=-I${srcdir}/glob 62 60 fi … … 79 77 # Link all the objects together. 80 78 echo linking make... 81 $CC $ LDFLAGS $objs $LOADLIBES -o makenew${EXEEXT}79 $CC $CFLAGS $LDFLAGS $objs $LOADLIBES -o makenew${EXEEXT} 82 80 echo done 83 81 mv -f makenew${EXEEXT} make${EXEEXT} -
Property svn:executable
set to
Note:
See TracChangeset
for help on using the changeset viewer.

