Changeset 1989 in kBuild for vendor/gnumake/current/main.c
- Timestamp:
- Oct 28, 2008 11:02:45 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/main.c
r900 r1989 7 7 GNU Make is free software; you can redistribute it and/or modify it under the 8 8 terms of the GNU General Public License as published by the Free Software 9 Foundation; either version 2, or (at your option) any later version. 9 Foundation; either version 3 of the License, or (at your option) any later 10 version. 10 11 11 12 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY … … 14 15 15 16 You 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. */ 17 this program. If not, see <http://www.gnu.org/licenses/>. */ 18 18 19 19 #include "make.h" … … 323 323 -h, --help Print this message and exit.\n"), 324 324 N_("\ 325 -i, --ignore-errors Ignore errors from commands.\n"),325 -i, --ignore-errors Ignore errors from recipes.\n"), 326 326 N_("\ 327 327 -I DIRECTORY, --include-dir=DIRECTORY\n\ … … 338 338 N_("\ 339 339 -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"), 341 341 N_("\ 342 342 -o FILE, --old-file=FILE, --assume-old=FILE\n\ … … 345 345 -p, --print-data-base Print make's internal database.\n"), 346 346 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"), 348 348 N_("\ 349 349 -r, --no-builtin-rules Disable the built-in implicit rules.\n"), … … 351 351 -R, --no-builtin-variables Disable the built-in variable settings.\n"), 352 352 N_("\ 353 -s, --silent, --quiet Don't echo commands.\n"),353 -s, --silent, --quiet Don't echo recipes.\n"), 354 354 N_("\ 355 355 -S, --no-keep-going, --stop\n\ … … 1122 1122 define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1; 1123 1123 /* define_variable (".TARGETS", 8, "", o_default, 0)->special = 1; */ 1124 define_variable (".RECIPEPREFIX", 13, "", o_default, 0)->special = 1; 1124 1125 1125 1126 /* Set up .FEATURES */ … … 2964 2965 return; 2965 2966 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 2966 2975 /* Print this untranslated. The coding standards recommend translating the 2967 2976 (C) to the copyright symbol, but this string is going to change every … … 2969 2978 word "Copyright", so it hardly seems worth it. */ 2970 2979 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"), 2978 2985 precede, precede, precede); 2979 2980 if (!remote_description || *remote_description == '\0')2981 printf (_("\n%sThis program built for %s\n"), precede, make_host);2982 else2983 printf (_("\n%sThis program built for %s (%s)\n"),2984 precede, make_host, remote_description);2985 2986 2986 2987 printed_version = 1;
Note:
See TracChangeset
for help on using the changeset viewer.