Deleted Added
full compact
globals.h (167330) globals.h (177101)
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

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

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

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

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * $FreeBSD: head/usr.bin/make/globals.h 167330 2007-03-08 09:16:11Z fjoe $
38 * $FreeBSD: head/usr.bin/make/globals.h 177101 2008-03-12 14:50:58Z obrien $
39 */
40
41#ifndef globals_h_1c1edb96
42#define globals_h_1c1edb96
43
44/*
45 * Global Variables
46 */

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

73extern Boolean jobsRunning; /* True if jobs are running */
74extern Boolean compatMake; /* True if we are make compatible */
75extern Boolean ignoreErrors; /* True if should ignore all errors */
76extern Boolean beSilent; /* True if should print no commands */
77extern Boolean beVerbose; /* True if should print extra cruft */
78extern Boolean noExecute; /* True if should execute nothing */
79extern Boolean allPrecious; /* True if every target is precious */
80extern Boolean is_posix; /* .POSIX target seen */
39 */
40
41#ifndef globals_h_1c1edb96
42#define globals_h_1c1edb96
43
44/*
45 * Global Variables
46 */

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

73extern Boolean jobsRunning; /* True if jobs are running */
74extern Boolean compatMake; /* True if we are make compatible */
75extern Boolean ignoreErrors; /* True if should ignore all errors */
76extern Boolean beSilent; /* True if should print no commands */
77extern Boolean beVerbose; /* True if should print extra cruft */
78extern Boolean noExecute; /* True if should execute nothing */
79extern Boolean allPrecious; /* True if every target is precious */
80extern Boolean is_posix; /* .POSIX target seen */
81extern Boolean mfAutoDeps; /* .MAKEFILEDEPS target seen */
81
82/* True if should continue on unaffected portions of the graph
83 * when have an error in one portion */
84extern Boolean keepgoing;
85
86/* TRUE if targets should just be 'touched'if out of date. Set by the -t flag */
87extern Boolean touchFlag;
88

--- 26 unchanged lines hidden ---
82
83/* True if should continue on unaffected portions of the graph
84 * when have an error in one portion */
85extern Boolean keepgoing;
86
87/* TRUE if targets should just be 'touched'if out of date. Set by the -t flag */
88extern Boolean touchFlag;
89

--- 26 unchanged lines hidden ---