Subversion Repositories DevTools

Rev

Rev 7299 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
###############################################################################
7300 dpurdie 2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
227 dpurdie 3
# 
4
# File:         PLATFORM/GENERIC
5
#
6
# Contents:     Minimul support for packages that are machine independent
7
#
8
###############################################################################
9
#
10
 
11
GENERICInit();
12
 
13
###############################################################################
14
#
15
sub GENERICInit
16
{
17
    my( @args ) = @ScmPlatformArgs;            # Platform arguments
18
    my( $product );
19
 
20
#.. Parse arguments
21
#
22
    Debug( "GENERIC(@args)\n" );
23
 
24
    foreach $_ ( @args ) {
25
        if (/^--product=(.*)/) {
26
            $product = $1;
27
        } else {
28
            Message( "GENERIC: unknown option $_ -- ignored\n" );
29
        }
30
    }
31
 
32
#... Toolset
33
#
34
    Toolset( '*', "GENERIC" );
35
    return 1;
36
}
37