# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
#
# Module name   : build.pl
# Module type   : Makefile system
# Environment(s): n/a
#
# Description:    build.pl Template
#.........................................................................#

#..     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   ( 'GENERIC' );

BuildName       ( 'BUILDNAME xx.xx.xx xx' );
BuildSnapshot   ();
BuildAccessPerms();
BuildInterface  ( 'interface' );

#..     External Packages
#       Use LinkPkgArchive or BuildPkgArchive
#
LinkPkgArchive ( 'Package'        , 'Version' );

#
#   Specify subdirectories to process
#
BuildSubDir    ( 'src' );

#
#   Generate Files
BuildDescpkg   ();
BuildMake      ();

