Deleted Added
full compact
make.h (253883) make.h (255253)
1/* $NetBSD: make.h,v 1.91 2013/06/18 20:06:09 sjg Exp $ */
1/* $NetBSD: make.h,v 1.92 2013/09/04 15:38:26 sjg Exp $ */
2
3/*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *

--- 389 unchanged lines hidden (view full) ---

399extern Boolean parseWarnFatal; /* TRUE if makefile parsing warnings are
400 * treated as errors */
401
402extern Boolean varNoExportEnv; /* TRUE if we should not export variables
403 * set on the command line to the env. */
404
405extern GNode *DEFAULT; /* .DEFAULT rule */
406
2
3/*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *

--- 389 unchanged lines hidden (view full) ---

399extern Boolean parseWarnFatal; /* TRUE if makefile parsing warnings are
400 * treated as errors */
401
402extern Boolean varNoExportEnv; /* TRUE if we should not export variables
403 * set on the command line to the env. */
404
405extern GNode *DEFAULT; /* .DEFAULT rule */
406
407extern GNode *VAR_INTERNAL; /* Variables defined internally by make
408 * which should not override those set by
409 * makefiles.
410 */
407extern GNode *VAR_GLOBAL; /* Variables defined in a global context, e.g
408 * in the Makefile itself */
409extern GNode *VAR_CMD; /* Variables defined on the command line */
410extern GNode *VAR_FOR; /* Iteration variables */
411extern char var_Error[]; /* Value returned by Var_Parse when an error
412 * is encountered. It actually points to
413 * an empty string, so naive callers needn't
414 * worry about it. */

--- 103 unchanged lines hidden ---
411extern GNode *VAR_GLOBAL; /* Variables defined in a global context, e.g
412 * in the Makefile itself */
413extern GNode *VAR_CMD; /* Variables defined on the command line */
414extern GNode *VAR_FOR; /* Iteration variables */
415extern char var_Error[]; /* Value returned by Var_Parse when an error
416 * is encountered. It actually points to
417 * an empty string, so naive callers needn't
418 * worry about it. */

--- 103 unchanged lines hidden ---