Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

###############################################################################
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
# 
# File:         PLATFORM/MANSIG
#
# Contents:     Support for a specialised tool used to sign Manifests
#               It has no compiler support and is thus mostly GENERIC
#
###############################################################################
#

MANSIGInit();

###############################################################################
#
sub MANSIGInit
{
    my( @args ) = @ScmPlatformArgs;            # Platform arguments
    my( $product );

#.. Parse arguments
#
    Debug( "MANSIG(@args)\n" );

    foreach $_ ( @args ) {
        if (/^--product=(.*)/) {
            $product = $1;
        } else {
            Message( "MANSIG: unknown option $_ -- ignored\n" );
        }
    }

#... Toolset
#
    Toolset( '*', "GENERIC" );
    return 1;
}