Rev 5709 | Rev 7299 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
################################################################################ Copyright (c) VIX TECHNOLOGY (AUST) LTD## 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;}