Subversion Repositories DevTools

Rev

Rev 5709 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
6177 dpurdie 3
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
227 dpurdie 4
# 
5
# File:         PLATFORM/H8S
6
#
7
# Contents:     H8S target
8
#
9
# Revision History:
10
#           DDP     23-Nov-04       Created
11
###############################################################################
12
#
13
 
14
H8SInit();
15
 
16
sub 
17
H8SInit
18
{
19
 
20
    Toolset( '*', gnupro_h8 );
21
    PlatformDefines( "H8S.def" );
22
 
23
    PlatformDefine( "#################################################");
24
    PlatformDefine( "# Building a H8S application" );
25
    PlatformDefine( "#" );
26
 
27
    AddFlags( '*',                '-DEMBEDDED' );
28
}
29
 
30
1;
31
 
32
 
33