Subversion Repositories DevTools

Rev

Rev 4003 | Rev 4728 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4003 Rev 4551
Line 282... Line 282...
282
{
282
{
283
    $opt_silent = 0;
283
    $opt_silent = 0;
284
}
284
}
285
 
285
 
286
#
286
#
287
#   Process GBE_PLATFORM and create a usable hash
-
 
288
#
-
 
289
if ( $GBE_PLATFORM )
-
 
290
{
-
 
291
    Verbose2 ("GBE_PLATFORM: $GBE_PLATFORM");
-
 
292
    $gbe_platform{$_} = 1 foreach ( split( / /, $GBE_PLATFORM ) );
-
 
293
    $gbe_platform{GENERIC} = 1;
-
 
294
}
-
 
295
 
-
 
296
#
-
 
297
#   Read in the local Makefile.gbe file
287
#   Read in the local Makefile.gbe file
298
#   This will provide a path to the interface directory
288
#   This will provide a path to the interface directory
299
#
289
#
300
ReadMakeInfo();
290
ReadMakeInfo();
301
 
291
 
Line 303... Line 293...
303
#   Read in the global build variables
293
#   Read in the global build variables
304
#
294
#
305
ReadBuildConfig( "$::ScmRoot/$::ScmInterface" );
295
ReadBuildConfig( "$::ScmRoot/$::ScmInterface" );
306
 
296
 
307
#
297
#
-
 
298
#   Process GBE_PLATFORM and create a usable hash
-
 
299
#
-
 
300
if ( $GBE_PLATFORM )
-
 
301
{
-
 
302
    Verbose2 ("GBE_PLATFORM: $GBE_PLATFORM");
-
 
303
    $gbe_platform{$_} = 1 foreach ( split( / /, $GBE_PLATFORM ) );
-
 
304
 
-
 
305
    # Insert targets that are GENERIC, there should only be one
-
 
306
    foreach my $target (keys %BUILDINFO) {
-
 
307
        if ($BUILDINFO{$target}{IS_GENERIC})
-
 
308
        {
-
 
309
            $gbe_platform{$target} = 1;
-
 
310
        }
-
 
311
    }
-
 
312
}
-
 
313
 
-
 
314
#
308
#   Process the user specified targets
315
#   Process the user specified targets
309
#
316
#
310
ProcessTargets();
317
ProcessTargets();
311
 
318
 
312
#
319
#