Subversion Repositories DevTools

Rev

Rev 1024 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1024 Rev 1026
Line 1... Line 1...
1
# Copyright (C) 1998-2004 ERG Limited, All rights reserved
1
# Copyright (C) 1998-2004 ERG Limited, All rights reserved
2
#
2
#
3
# Module name   : build.pl
3
# Module name   : build.pl
4
# Module type   : Makefile system
4
# Module type   : Makefile system
5
# Environment(s): n/a
5
# Environment(s): n/a
6
#
6
#
7
# Description:    build.pl for binflow
7
# Description:    build.pl for binflow
8
#.........................................................................#
8
#.........................................................................#
9
 
9
 
10
#..     Build system
10
#..     Build system
11
#
11
#
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
14
 
15
require         "$BUILDLIB_PL";
15
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
16
require         "$MAKELIB_PL";
17
 
17
 
18
#..     Product configuration
18
#..     Product configuration
19
#
19
#
20
BuildPlatforms   ( 'WIN32,--OnlyProd' );
20
BuildPlatforms   ( 'WIN32,--OnlyProd' );
21
 
21
 
22
BuildName       ( 'binflow 1.0.0.cr' );
22
BuildName       ( 'binflow 1.1.0000 cr' );
23
BuildInterface  ( 'interface' );
23
BuildInterface  ( 'interface' );
24
 
24
 
25
 
25
 
26
 
26
 
27
BuildVersion    ();
27
BuildVersion    ();
28
 
28
 
29
#   Specify subdirectories to process
29
#   Specify subdirectories to process
30
BuildSubDir     ('src' );
30
BuildSubDir     ('src' );
31
#
31
#
32
#   Generate the Makefile
32
#   Generate the Makefile
33
BuildDescpkg    ();
33
BuildDescpkg    ();
34
BuildMake       ();
34
BuildMake       ();