Subversion Repositories DevTools

Rev

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

Rev 2153 Rev 2155
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 Template
7
# Description:    build.pl Template
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
#..     Toolset configuration
18
#..     Toolset configuration
19
#
19
#
20
 
20
 
21
#..     Product configuration
21
#..     Product configuration
22
#
22
#
23
BuildPlatforms ( 'CSHARP' );
23
BuildPlatforms ( 'CSHARP' );
24
 
24
 
25
BuildName       ( 'EA_ReqPro 2.6.0 cr' );
25
BuildName       ( 'EA_ReqPro 2.7.0000 cr', '2.7.0000' );
26
 
26
 
27
BuildInterface  ( 'local' );
27
BuildInterface  ( 'local' );
28
BuildInterface  ( 'interface' );
28
BuildInterface  ( 'interface' );
29
 
29
 
30
#
30
#
31
#   Specify subdirectories to process
31
#   Specify subdirectories to process
32
#
32
#
33
BuildSubDir    ( 'EA_ReqPro' );
33
BuildSubDir    ( 'EA_ReqPro' );
34
 
34
 
35
#
35
#
36
# Specify dependencies
36
# Specify dependencies
37
#
37
#
38
LinkPkgArchive ( 'Sparx_Systems_EA_Object_Lib', '2.10.238.1.cots' );
38
LinkPkgArchive ( 'Sparx_Systems_EA_Object_Lib', '2.10.238.1.cots' );
39
LinkPkgArchive ( 'ReqPro_Extensibility_Interface', '1.8.0.cots' );
39
LinkPkgArchive ( 'ReqPro_Extensibility_Interface', '1.8.0.cots' );
40
 
40
 
41
#
41
#
42
#   Generate Files
42
#   Generate Files
43
BuildVersion   ('', 'array', 'Defs');
43
BuildVersion   ('', 'array', 'Defs');
44
BuildDescpkg   ();
44
BuildDescpkg   ();
45
BuildMake      ();
45
BuildMake      ();
46
 
46