Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2263 kivins 1
# Copyright (C) 1998-2008 ERG Limited, All rights reserved
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): n/a
6
#
7
# Description:    build.pl for the TTM package
8
#.........................................................................#
9
 
10
#..     Build system
11
#
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
15
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
17
 
18
#..     Product configuration
19
#
20
BuildPlatforms ( 'BORLAND', '--OnlyProd' );
21
 
2267 kivins 22
BuildName       ( 'TxnTestManager 2.7.0000 sls', '2.7.0000' );
2263 kivins 23
 
24
BuildInterface  ( 'interface' );
25
 
26
#..     External Packages
27
#           Use BuildPkgArchive to populate the "interface" directory
28
#           This is then used directly in the borland project file
29
#
30
 
31
BuildPkgArchive ( 'dce', '25.6.3006.sls' );
32
BuildPkgArchive ( 'InfraBase', '25.2.0023.cr' );
33
BuildPkgArchive ( 'SecurityWrapper', '25.3.1046.cr' );
34
BuildPkgArchive ( 'TMSSoftware', '3.5.0000.cots' );
35
BuildPkgArchive ( 'TopGrid', '2.20.0000.cots' );
36
BuildPkgArchive ( 'XmlSchemaWrapperInterface', '1.2.1.cr' );
37
BuildPkgArchive ( 'XMLSchema_Interfaces', '15.13.0019.cr' );
38
 
39
 
40
#
41
#   Specify subdirectories to process
42
#
43
BuildSubDir    ( 'src' );
44
 
45
#
46
#   Generate Files
47
#
48
BuildVersion   ( '--Style=WinRC', '--File=auto.rc', '--Icon=../etc/Images/erg.ico');
49
BuildDescpkg   ();
50
BuildMake      ();
51