VirtualBox

Changeset 1989 in kBuild for vendor/gnumake/current/main.c


Ignore:
Timestamp:
Oct 28, 2008 11:02:45 PM (16 years ago)
Author:
bird
Message:

Load gnumake-2008-10-28-CVS into vendor/gnumake/current.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/gnumake/current/main.c

    r900 r1989  
    77GNU Make is free software; you can redistribute it and/or modify it under the
    88terms of the GNU General Public License as published by the Free Software
    9 Foundation; either version 2, or (at your option) any later version.
     9Foundation; either version 3 of the License, or (at your option) any later
     10version.
    1011
    1112GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     
    1415
    1516You should have received a copy of the GNU General Public License along with
    16 GNU Make; see the file COPYING.  If not, write to the Free Software
    17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  */
     17this program.  If not, see <http://www.gnu.org/licenses/>.  */
    1818
    1919#include "make.h"
     
    323323  -h, --help                  Print this message and exit.\n"),
    324324    N_("\
    325   -i, --ignore-errors         Ignore errors from commands.\n"),
     325  -i, --ignore-errors         Ignore errors from recipes.\n"),
    326326    N_("\
    327327  -I DIRECTORY, --include-dir=DIRECTORY\n\
     
    338338    N_("\
    339339  -n, --just-print, --dry-run, --recon\n\
    340                               Don't actually run any commands; just print them.\n"),
     340                              Don't actually run any recipe; just print them.\n"),
    341341    N_("\
    342342  -o FILE, --old-file=FILE, --assume-old=FILE\n\
     
    345345  -p, --print-data-base       Print make's internal database.\n"),
    346346    N_("\
    347   -q, --question              Run no commands; exit status says if up to date.\n"),
     347  -q, --question              Run no recipe; exit status says if up to date.\n"),
    348348    N_("\
    349349  -r, --no-builtin-rules      Disable the built-in implicit rules.\n"),
     
    351351  -R, --no-builtin-variables  Disable the built-in variable settings.\n"),
    352352    N_("\
    353   -s, --silent, --quiet       Don't echo commands.\n"),
     353  -s, --silent, --quiet       Don't echo recipes.\n"),
    354354    N_("\
    355355  -S, --no-keep-going, --stop\n\
     
    11221122  define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1;
    11231123  /* define_variable (".TARGETS", 8, "", o_default, 0)->special = 1; */
     1124  define_variable (".RECIPEPREFIX", 13, "", o_default, 0)->special = 1;
    11241125
    11251126  /* Set up .FEATURES */
     
    29642965    return;
    29652966
     2967  printf ("%sGNU Make %s\n", precede, version_string);
     2968
     2969  if (!remote_description || *remote_description == '\0')
     2970    printf (_("%sBuilt for %s\n"), precede, make_host);
     2971  else
     2972    printf (_("%sBuilt for %s (%s)\n"),
     2973            precede, make_host, remote_description);
     2974
    29662975  /* Print this untranslated.  The coding standards recommend translating the
    29672976     (C) to the copyright symbol, but this string is going to change every
     
    29692978     word "Copyright", so it hardly seems worth it.  */
    29702979
    2971   printf ("%sGNU Make %s\n\
    2972 %sCopyright (C) 2006  Free Software Foundation, Inc.\n",
    2973           precede, version_string, precede);
    2974 
    2975   printf (_("%sThis is free software; see the source for copying conditions.\n\
    2976 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
    2977 %sPARTICULAR PURPOSE.\n"),
     2980  printf ("%sCopyright (C) 2007  Free Software Foundation, Inc.\n", precede);
     2981
     2982  printf (_("%sLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
     2983%sThis is free software: you are free to change and redistribute it.\n\
     2984%sThere is NO WARRANTY, to the extent permitted by law.\n"),
    29782985            precede, precede, precede);
    2979 
    2980   if (!remote_description || *remote_description == '\0')
    2981     printf (_("\n%sThis program built for %s\n"), precede, make_host);
    2982   else
    2983     printf (_("\n%sThis program built for %s (%s)\n"),
    2984             precede, make_host, remote_description);
    29852986
    29862987  printed_version = 1;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette