Subversion Repositories DevTools

Rev

Rev 2294 | 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
 
2296 buildadm 22
BuildName       ( 'TxnTestManager 2.7.3010 sls' );
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
 
2275 buildadm 31
BuildPkgArchive ( 'InfraBase', '25.2.0026.cr' );
2296 buildadm 32
BuildPkgArchive ( 'SecurityWrapper', '25.3.1060.cr' );
2263 kivins 33
BuildPkgArchive ( 'TMSSoftware', '3.5.0000.cots' );
34
BuildPkgArchive ( 'TopGrid', '2.20.0000.cots' );
35
BuildPkgArchive ( 'XmlSchemaWrapperInterface', '1.2.1.cr' );
2275 buildadm 36
BuildPkgArchive ( 'XMLSchema_Interfaces', '15.13.0022.cr' );
2263 kivins 37
 
38
 
2269 kivins 39
 
2263 kivins 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