Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2155 ghuddy 1
# Copyright (C) 1998-2004 ERG Limited, All rights reserved
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): n/a
6
#
7
# Description:    build.pl Template
8
#.........................................................................#
9
 
10
#..     Build system
11
#
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
15
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
17
 
18
#..     Toolset configuration
19
#
20
 
21
#..     Product configuration
22
#
23
BuildPlatforms ( 'CSHARP' );
24
 
2173 ghuddy 25
BuildName       ( 'EA_ReqPro 2.8.3000 cr' );
2155 ghuddy 26
 
27
BuildInterface  ( 'local' );
28
BuildInterface  ( 'interface' );
29
 
30
#
31
#   Specify subdirectories to process
32
#
33
BuildSubDir    ( 'EA_ReqPro' );
34
 
35
#
36
# Specify dependencies
37
#
38
LinkPkgArchive ( 'Sparx_Systems_EA_Object_Lib', '2.10.238.1.cots' );
39
LinkPkgArchive ( 'ReqPro_Extensibility_Interface', '1.8.0.cots' );
40
 
41
#
42
#   Generate Files
2169 ghuddy 43
BuildVersion   ( '--Style=CSharp' );
2155 ghuddy 44
BuildDescpkg   ();
45
BuildMake      ();
46