43 /*
44 * typedefs & structs
45 */
46
47 /*
48 * Global variables used by make only
49 */
50 FILE *dependency_report_file;
51
52 /*
53 * Global variables used by make
54 */
55 Boolean allrules_read=false;
56 Name posix_name;
57 Name svr4_name;
58 Boolean sdot_target; /* used to identify s.m(/M)akefile */
59 Boolean all_parallel; /* TEAMWARE_MAKE_CMN */
60 Boolean assign_done;
61 int foo;
62 Boolean build_failed_seen;
63 #ifdef DISTRIBUTED
64 Boolean building_serial;
65 #endif
66 Name built_last_make_run;
67 Name c_at;
68 #ifdef DISTRIBUTED
69 Boolean called_make = false;
70 #endif
71 Boolean cleanup;
72 Boolean close_report;
73 Boolean command_changed;
74 Boolean commands_done;
75 Chain conditional_targets;
76 Name conditionals;
77 Boolean continue_after_error; /* `-k' */
78 Property current_line;
79 Name current_make_version;
80 Name current_target;
81 short debug_level;
82 Cmd_line default_rule;
83 Name default_rule_name;
84 Name default_target_to_build;
85 Name dmake_group;
86 Name dmake_max_jobs;
87 Name dmake_mode;
88 DMake_mode dmake_mode_type;
89 Name dmake_output_mode;
90 DMake_output_mode output_mode = txt1_mode;
|
43 /*
44 * typedefs & structs
45 */
46
47 /*
48 * Global variables used by make only
49 */
50 FILE *dependency_report_file;
51
52 /*
53 * Global variables used by make
54 */
55 Boolean allrules_read=false;
56 Name posix_name;
57 Name svr4_name;
58 Boolean sdot_target; /* used to identify s.m(/M)akefile */
59 Boolean all_parallel; /* TEAMWARE_MAKE_CMN */
60 Boolean assign_done;
61 int foo;
62 Boolean build_failed_seen;
63 Name built_last_make_run;
64 Name c_at;
65 Boolean cleanup;
66 Boolean close_report;
67 Boolean command_changed;
68 Boolean commands_done;
69 Chain conditional_targets;
70 Name conditionals;
71 Boolean continue_after_error; /* `-k' */
72 Property current_line;
73 Name current_make_version;
74 Name current_target;
75 short debug_level;
76 Cmd_line default_rule;
77 Name default_rule_name;
78 Name default_target_to_build;
79 Name dmake_group;
80 Name dmake_max_jobs;
81 Name dmake_mode;
82 DMake_mode dmake_mode_type;
83 Name dmake_output_mode;
84 DMake_output_mode output_mode = txt1_mode;
|