Subversion Repositories DevTools

Rev

Rev 4205 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4205 Rev 4625
Line -... Line 1...
-
 
1
########################################################################
-
 
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
-
 
3
#
-
 
4
# Module name   : build.pl
-
 
5
# Module type   : Makefile system
-
 
6
# Compiler(s)   : Perl
-
 
7
# Environment(s): jats
-
 
8
#
-
 
9
# Description   : Jats build file for generate_release_notes
-
 
10
#
-
 
11
#......................................................................#
-
 
12
#
-
 
13
#..     Build system
-
 
14
#
1
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
15
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
2
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
16
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
-
 
17
 
3
require         "$BUILDLIB_PL";
18
require         "$BUILDLIB_PL";
4
require         "$MAKELIB_PL";
19
require         "$MAKELIB_PL";
-
 
20
 
-
 
21
 
5
BuildPlatforms  ( 'JAVA,--Version=1.6' );
22
BuildPlatforms  ( 'GENERIC' );
6
BuildName       ( 'generate_release_notes 2.0.2000 cr' );
23
BuildName       ( 'generate_release_notes 4.0.0000 cr' );
7
BuildInterface  ( 'local' );
-
 
-
 
24
 
8
BuildInterface  ( 'interface' );
25
BuildInterface  ( 'interface' );
9
BuildDescpkg    ();   
26
BuildDescpkg    ();   
10
BuildMake       ();
27
BuildMake       ();
11
 
28