97 char *make_state_lockfile;
98 Boolean make_word_mentioned;
99 Makefile_type makefile_type = reading_nothing;
100 char mbs_buffer[(MAXPATHLEN * MB_LEN_MAX)];
101 Name path_name;
102 Boolean posix = true;
103 Name hat;
104 Name query;
105 Boolean query_mentioned;
106 Boolean reading_environment;
107 Name shell_name;
108 Boolean svr4 = false;
109 Name target_arch;
110 Name target_mach;
111 Boolean tilde_rule;
112 Name virtual_root;
113 Boolean vpath_defined;
114 Name vpath_name;
115 wchar_t wcs_buffer[MAXPATHLEN];
116 Boolean working_on_targets;
117 #if defined (TEAMWARE_MAKE_CMN) && defined(REDIRECT_ERR)
118 Boolean out_err_same;
119 #endif
120 pid_t childPid = -1; // This variable is used for killing child's process
121 // Such as qrsh, running command, etc.
122
123 /*
124 * timestamps defined in defs.h
125 */
126 const timestruc_t file_no_time = { -1, 0 };
127 const timestruc_t file_doesnt_exist = { 0, 0 };
128 const timestruc_t file_is_dir = { 1, 0 };
129 const timestruc_t file_min_time = { 2, 0 };
130 const timestruc_t file_max_time = { INT_MAX, 0 };
|
97 char *make_state_lockfile;
98 Boolean make_word_mentioned;
99 Makefile_type makefile_type = reading_nothing;
100 char mbs_buffer[(MAXPATHLEN * MB_LEN_MAX)];
101 Name path_name;
102 Boolean posix = true;
103 Name hat;
104 Name query;
105 Boolean query_mentioned;
106 Boolean reading_environment;
107 Name shell_name;
108 Boolean svr4 = false;
109 Name target_arch;
110 Name target_mach;
111 Boolean tilde_rule;
112 Name virtual_root;
113 Boolean vpath_defined;
114 Name vpath_name;
115 wchar_t wcs_buffer[MAXPATHLEN];
116 Boolean working_on_targets;
117 #if defined (TEAMWARE_MAKE_CMN)
118 Boolean out_err_same;
119 #endif
120 pid_t childPid = -1; // This variable is used for killing child's process
121 // Such as qrsh, running command, etc.
122
123 /*
124 * timestamps defined in defs.h
125 */
126 const timestruc_t file_no_time = { -1, 0 };
127 const timestruc_t file_doesnt_exist = { 0, 0 };
128 const timestruc_t file_is_dir = { 1, 0 };
129 const timestruc_t file_min_time = { 2, 0 };
130 const timestruc_t file_max_time = { INT_MAX, 0 };
|