Subversion Repositories DevTools

Rev

Rev 227 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
5709 dpurdie 3
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
227 dpurdie 4
# 
5
# File:         PLATFORM/DAFBR
6
#
7
# Contents:     Minimul support for packages that are machine independent
8
#
9
# Revision History:
10
#   15-Dec-04   DDP     Created
11
#
12
###############################################################################
13
#
14
 
15
DAFBRInit();
16
 
17
###############################################################################
18
#
19
sub DAFBRInit
20
{
21
    my( @args ) = @ScmPlatformArgs;            # Platform arguments
22
    my( $product );
23
 
24
#.. Parse arguments
25
#   Ignore unkwnown arguments. They will be processed by the toolset
26
#
27
    Debug( "DAFBR(@args)\n" );
28
 
29
    foreach $_ ( @args ) {
30
        if (/^--product=(.*)/) {
31
            $product = $1;
32
        }
33
    }
34
 
35
#... Toolset
36
#
37
    Toolset( '*', "DAFBR", "--Endian=Little" );
38
    return 1;
39
}
40