Subversion Repositories DevTools

Rev

Rev 939 | Blame | Compare with Previous | Last modification | View Log | RSS feed

# Copyright (C) 1998-2007 ERG Limited, All rights reserved
#
# Module name   : build.pl
# Module type   : Makefile system
# Environment(s): n/a
#
# Description:    build.pl simple example
#.........................................................................#

#..     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 ('SOLARIS');
BuildPlatforms ('LINUX_EMU');
BuildPlatforms ('WIN32');


BuildName       ( 'AdvisoryDependency', '1.0.1002', 'tool', '--RelaxedVersion' );
BuildSnapshot   ();
BuildAccessPerms();
BuildInterface  ( 'local' );
BuildInterface  ( 'interface' );

#..     Build source tree makefile(s)
#       LinkPkgArchive or BuildPkgArchive
#

#   Specify subdirectories to process
#
BuildSubDir    ( 'src' );

#
#   Generate the descpkg and Makefiles
BuildVersion ();
BuildDescpkg   ();
BuildMake      ();