Subversion Repositories DevTools

Rev

Rev 5692 | Rev 5847 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5692 dpurdie 1
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): n/a
6
#
7
# Description:    build.pl for timeout
8
#
9
#                 timeout is a native utility used by JATS to limit the runtime of
10
#                 a program.
11
#
12
#.........................................................................#
13
 
14
#..     Build system
15
#
16
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
17
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
18
 
19
require         "$BUILDLIB_PL";
20
require         "$MAKELIB_PL";
21
 
22
#..     Product configuration
23
#
24
BuildPlatforms ('SOLARIS,--OnlyDebug'   ,'--Alias=UNIX');
25
BuildPlatforms ('LINUX,--OnlyDebug'     ,'--Alias=UNIX');
5710 dpurdie 26
BuildPlatforms ('VS2003,--OnlyProd'     ,'--Alias=WINDOWS');
5692 dpurdie 27
 
28
 
29
BuildName       ( 'timeout 0.0.0000 cr' );
30
BuildInterface  ( 'local' );
31
BuildInterface  ( 'interface' );
32
 
33
#   Specify subdirectories to process
34
#
35
BuildSubDir    ( 'src' );
36
 
37
#
38
#   Generate the descpkg and Makefiles
39
BuildDescpkg   ();
40
BuildMake      ();
41