Rev 361 | Blame | Compare with Previous | Last modification | View Log | RSS feed
# 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 stdmux## stdmux is a native utility used by JATS to multiplex# stdout and stderr from another program into one# stream (stdout) that is easy to handle within PERL### Text from the invoked program is prefixed with# STDOUT:# STDERR:##.........................................................................##.. 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');BuildPlatforms ('LINUX,--OnlyDebug');BuildPlatforms ('WIN32,--OnlyProd' ,'--Alias=WINDOWS');BuildPlatforms ('VS2012_X64,--OnlyProd' ,'--Alias=WINDOWS');BuildName ( 'stdmux 0.0.0000 cr' );BuildSnapshot ();BuildAccessPerms();BuildInterface ( 'local' );BuildInterface ( 'interface' );# Specify subdirectories to process#BuildSubDir ( 'src' );## Generate the descpkg and MakefilesBuildDescpkg ();BuildMake ();