Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
3
# Copyright (c) ERG Transit Systems. 1996-2004
4
# 
5
# File:         PLATFORM/thyron
6
#
7
# Contents:     THRYON target
8
#
9
# Revision History:
10
#   17/10/02 APY        Created
11
###############################################################################
12
#
13
 
14
ThyronInit();
15
 
16
sub 
17
ThyronInit
18
{
19
 
20
    Toolset( '*', cygnus_thyron );
21
    PlatformDefines( "thryon.def" );
22
 
23
    PlatformDefine( "#################################################");
24
    PlatformDefine( "# Building a THYRON application" );
25
    PlatformDefine( "#" );
26
 
27
    AddFlags( '*',                '-DEMBEDDED' );
28
    AddFlags( '*',                '-DTHYRON' );
29
}
30
 
31
1;
32
 
33
 
34