Subversion Repositories DevTools

Rev

Rev 2134 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2114 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
#
2136 brianf 23
BuildPlatforms ( 'CSHARP2005' );
2114 ghuddy 24
 
2136 brianf 25
BuildName       ( 'EA_DocGen 1.15.5000 cr' );
2114 ghuddy 26
 
27
BuildInterface  ( 'local' );
28
BuildInterface  ( 'interface' );
29
 
30
#
31
#   Specify subdirectories to process
32
#
33
BuildSubDir    ( 'EA_DocGen' );
34
 
35
#
36
# Specify dependencies
37
#
2136 brianf 38
LinkPkgArchive ( 'MS_Office_Assembly', '12.0.4518.1014.cots' );
39
LinkPkgArchive ( 'MS_Office_Word_Assembly', '12.0.4518.1014.cots' );
40
LinkPkgArchive ( 'Sparx_Systems_EA_Object_Lib', '2.10.238.2.cots' );
2114 ghuddy 41
 
42
#
43
#   Generate Files
2126 ghuddy 44
BuildVersion   ( '--Style=CSharp' );
2114 ghuddy 45
BuildDescpkg   ();
46
BuildMake      ();
47