Subversion Repositories DevTools

Rev

Go to most recent revision | Details | 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
 
2275 buildadm 22
BuildName       ( 'TxnTestManager 2.7.2001 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
 
2269 kivins 31
LinkPkgArchive ( 'ant-using', '3.1.6.tool' );
2275 buildadm 32
BuildPkgArchive ( 'InfraBase', '25.2.0026.cr' );
33
BuildPkgArchive ( 'SecurityWrapper', '25.3.1049.cr' );
2263 kivins 34
BuildPkgArchive ( 'TMSSoftware', '3.5.0000.cots' );
35
BuildPkgArchive ( 'TopGrid', '2.20.0000.cots' );
36
BuildPkgArchive ( 'XmlSchemaWrapperInterface', '1.2.1.cr' );
2275 buildadm 37
BuildPkgArchive ( 'XMLSchema_Interfaces', '15.13.0022.cr' );
2263 kivins 38
 
39
 
2269 kivins 40
 
2263 kivins 41
#
42
#   Specify subdirectories to process
43
#
44
BuildSubDir    ( 'src' );
45
 
46
#
47
#   Generate Files
48
#
49
BuildVersion   ( '--Style=WinRC', '--File=auto.rc', '--Icon=../etc/Images/erg.ico');
50
BuildDescpkg   ();
51
BuildMake      ();
52