Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

###############################################################################
# Copyright (c) ERG Electronics Ltd. 1996-2008
# 
# File:         PLATFORM/ACEX
#
# Contents:     Support for the Fairchild ACEx chipset platform with a ACE toolset
#               Only available on WIN32
#
###############################################################################
#

ACEXInit();

###############################################################################
#
#   This function is named after the invoking platform and the file that
#   this function is in. The two are bound.
#
#   The purpose of the xxxInit() is to provide platform-specfic support
#   to JATS. The function must do:
#
#       1) Parse any platform specific arguments
#          Arguments are specified with a PlatformRequire() statement
#       2) Define the toolset in use
#       3) Add flags and definitions as required
#
#
#   Note: Platform arguments are passed through in the Platform()
#         statement within a makefile.pl
#
#
sub ACEXInit
{
    my( @args ) = @ScmPlatformArgs;             # Platform arguments

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

    foreach $_ ( @args ) {
        if (/^--product=(.*)/) {                # Ignore

        } else {
            Message( "ACEX: unknown option $_ -- ignored\n" );
        }
    }

#... Toolset
#
    Toolset( '*', 'ACEX.PL' );

}
1;