Rev 6133 | Blame | Compare with Previous | Last modification | View Log | RSS feed
################################################################################ COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.## File: PLATFORM/GENERIC## Contents: Minimul support for packages that are machine independent#################################################################################GENERICInit();################################################################################sub GENERICInit{my( @args ) = @ScmPlatformArgs; # Platform argumentsmy( $product );#.. Parse arguments#Debug( "GENERIC(@args)\n" );foreach $_ ( @args ) {if (/^--product=(.*)/) {$product = $1;} else {Message( "GENERIC: unknown option $_ -- ignored\n" );}}#... Toolset#Toolset( '*', "GENERIC" );return 1;}