# Copyright (C) 1998-2008 ERG Limited, All rights reserved
#
# Module name   : build.pl
# Module type   : Makefile system
# Environment(s): n/a
#
# Description:    build.pl for the TTM package
#.........................................................................#

#..     Build system
#
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";

require         "$BUILDLIB_PL";
require         "$MAKELIB_PL";

#..     Product configuration
#
BuildPlatforms ( 'BORLAND', '--OnlyProd' );

BuildName       ( 'TxnTestManager 2.7.3010 sls' );

BuildInterface  ( 'interface' );

#..     External Packages
#           Use BuildPkgArchive to populate the "interface" directory
#           This is then used directly in the borland project file
#

BuildPkgArchive ( 'InfraBase', '25.2.0026.cr' );
BuildPkgArchive ( 'SecurityWrapper', '25.3.1060.cr' );
BuildPkgArchive ( 'TMSSoftware', '3.5.0000.cots' );
BuildPkgArchive ( 'TopGrid', '2.20.0000.cots' );
BuildPkgArchive ( 'XmlSchemaWrapperInterface', '1.2.1.cr' );
BuildPkgArchive ( 'XMLSchema_Interfaces', '15.13.0022.cr' );



#
#   Specify subdirectories to process
#
BuildSubDir    ( 'src' );

#
#   Generate Files
#
BuildVersion   ( '--Style=WinRC', '--File=auto.rc', '--Icon=../etc/Images/erg.ico');
BuildDescpkg   ();
BuildMake      ();

