Rev 5847 | Blame | Compare with Previous | Last modification | View Log | RSS feed
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.## Module name : build.pl# Module type : Makefile system# Environment(s): n/a## Description: build.pl for timeout## timeout is a native utility used by JATS to limit the runtime of# a program.##.........................................................................##.. 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,--OnlyDebug' ,'--Alias=UNIX');BuildPlatforms ('LINUX,--OnlyDebug' ,'--Alias=UNIX');BuildPlatforms ('VS2003,--OnlyProd' ,'--Alias=WINDOWS');#BuildPlatforms ('WIN32,--OnlyProd' ,'--Alias=WINDOWS');BuildName ( 'timeout 0.0.0000 cr' );BuildInterface ( 'local' );BuildInterface ( 'interface' );# Specify subdirectories to process#BuildSubDir ( 'src' );## Generate the descpkg and MakefilesBuildDescpkg ();BuildMake ();