Changeset 3140 for trunk/src/kmk/build.template
- Timestamp:
- Mar 14, 2018, 10:28:10 PM (7 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
-
Property svn:mergeinfo
set to
/vendor/gnumake/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/src/kmk/build.template
r2591 r3140 1 1 #!/bin/sh 2 # Shell script to build GNU Make in the absence of any `make' program.2 # Shell script to build GNU Make in the absence of any 'make' program. 3 3 # @configure_input@ 4 4 5 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 6 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 5 # Copyright (C) 1993-2016 Free Software Foundation, Inc. 7 6 # This file is part of GNU Make. 8 7 # … … 24 23 srcdir='@srcdir@' 25 24 CC='@CC@' 26 CFLAGS='@CFLAGS@ '25 CFLAGS='@CFLAGS@ @GUILE_CFLAGS@' 27 26 CPPFLAGS='@CPPFLAGS@' 28 LDFLAGS='@ LDFLAGS@'27 LDFLAGS='@AM_LDFLAGS@ @LDFLAGS@' 29 28 ALLOCA='@ALLOCA@' 30 LOADLIBES='@LIBS@ @ LIBINTL@'29 LOADLIBES='@LIBS@ @GUILE_LIBS@ @LIBINTL@' 31 30 eval extras=\'@LIBOBJS@\' 32 31 REMOTE='@REMOTE@' … … 40 39 # Common prefix for machine-dependent installed files. 41 40 exec_prefix=`eval echo @exec_prefix@` 42 # Directory to find libraries in for `-lXXX'.41 # Directory to find libraries in for '-lXXX'. 43 42 libdir=${exec_prefix}/lib 44 43 # Directory to search by default for included makefiles. … … 48 47 aliaspath=${localedir}${PATH_SEPARATOR}. 49 48 50 defines="-D ALIASPATH=\"${aliaspath}\" -DLOCALEDIR=\"${localedir}\" -DLIBDIR=\"${libdir}\" -DINCLUDEDIR=\"${includedir}\""' @DEFS@'49 defines="-DLOCALEDIR=\"${localedir}\" -DLIBDIR=\"${libdir}\" -DINCLUDEDIR=\"${includedir}\""' @DEFS@' 51 50 52 51 # Exit as soon as any command fails.
Note:
See TracChangeset
for help on using the changeset viewer.