Subversion Repositories DevTools

Rev

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');
5847 dpurdie 27
#BuildPlatforms ('WIN32,--OnlyProd'     ,'--Alias=WINDOWS');
5692 dpurdie 28
 
29
 
30
BuildName       ( 'timeout 0.0.0000 cr' );
31
BuildInterface  ( 'local' );
32
BuildInterface  ( 'interface' );
33
 
34
#   Specify subdirectories to process
35
#
36
BuildSubDir    ( 'src' );
37
 
38
#
39
#   Generate the descpkg and Makefiles
40
BuildDescpkg   ();
41
BuildMake      ();
42