Searched refs:globs (Results 1 - 6 of 6) sorted by relevance

/haiku-buildtools/jam/
H A Djam.h12 * 05/04/94 (seiwald) - new globs.jobs (-j jobs)
497 struct globs { struct
506 extern struct globs globs;
508 # define DEBUG_MAKE ( globs.debug[ 1 ] ) /* -da show actions when executed */
509 # define DEBUG_MAKEPROG ( globs.debug[ 3 ] ) /* -dm show progress of make0 */
511 # define DEBUG_EXECCMD ( globs.debug[ 4 ] ) /* show execcmds()'s work */
513 # define DEBUG_COMPILE ( globs.debug[ 5 ] ) /* show rule invocations */
515 # define DEBUG_HEADER ( globs.debug[ 6 ] ) /* show result of header scan */
516 # define DEBUG_BINDSCAN ( globs
[all...]
H A Djam.c134 struct globs globs = { variable in typeref:struct:globs
223 globs.noexec++, DEBUG_MAKE = DEBUG_MAKEQ = DEBUG_EXEC = 1;
226 globs.quitquick = 1;
233 globs.jobs = atoi( s );
238 globs.newestfirst = 1;
261 globs.debug[i] = 1;
265 globs.debug[i--] = 1;
382 /* If an output file is specified, set globs.cmdout to that */
386 if( !( globs
[all...]
H A Dexecunix.c256 /* Don't trust globs.jobs alone. */
258 while( cmdsrunning >= MAXJOBS || cmdsrunning >= globs.jobs )
338 active_handles = (HANDLE *)malloc(globs.jobs * sizeof(HANDLE) );
343 for ( i = 0; i < globs.jobs; i++ ) {
H A Dmake1.c295 if( globs.cmdout )
296 fprintf( globs.cmdout, "%s", cmd->buf );
298 if( globs.noexec )
380 if( globs.quitquick ) ++intr;
H A Dmake.c452 if( globs.newestfirst )
/haiku-buildtools/gcc/libstdc++-v3/scripts/
H A Dmake_exports.pl17 my @globs = ();
25 my $glob = \@globs;
34 $glob = \@globs;
44 # After 'local:', globs should be ignored, they won't be exported.
49 # After 'extern "C++"', globs are C++ patterns
54 # Catch globs. Note that '{}' is not allowed in globs by this script,
73 print "globs:\n";
74 (printf "%s\n", $_) foreach (@globs);
83 my $glob_regex = '^_(' . (join '|',@globs)
[all...]

Completed in 53 milliseconds