Subversion Repositories DevTools

Rev

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

Rev 1131 Rev 5767
Line -... Line 1...
-
 
1
#===============================================================================
1
# Copyright (C) 1998-2007 ERG Limited, All rights reserved
2
# **** Copyright (c) 2016 VIX TECHNOLOGY (AUST) LTD ****
2
#
3
#
3
# Module name   : build.pl
-
 
4
# Module type   : Makefile system
-
 
5
# Environment(s): n/a
-
 
6
#
-
 
7
# Description:    build.pl for the manifest-tool
-
 
8
#.........................................................................#
4
#===============================================================================
9
 
5
 
-
 
6
 
10
#..     Build system
7
# Build system
11
#
-
 
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
8
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
9
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
-
 
15
require         "$BUILDLIB_PL";
10
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
11
require         "$MAKELIB_PL";
17
 
12
 
18
#..     Product configuration
-
 
19
#
-
 
20
BuildPlatforms  ( 'GENERIC');
-
 
21
 
13
 
22
BuildName       ( 'manifest-tool 1.4.1000 cr' );
-
 
23
BuildInterface  ( 'local' );
14
# Product configuration
24
BuildInterface  ( 'interface' );
15
BuildPlatforms      ('GENERIC','--OnlyProd');
25
 
16
 
-
 
17
BuildName           ('manifest-tool 2.0.0000 cr' );
-
 
18
BuildInterface      ('local');
26
#   Specify subdirectories to process
19
BuildInterface      ('interface');
27
#
20
 
-
 
21
 
-
 
22
# Build directories.
28
BuildSubDir    ( 'src' );
23
BuildSubDir         ('src');
29
 
24
 
30
#
-
 
31
#   Generate the descpkg and Makefiles
-
 
32
BuildDescpkg   ();
-
 
33
BuildMake      ();
-
 
34
 
25
 
-
 
26
# Generate Files
-
 
27
BuildDescpkg        ();
-
 
28
BuildMake           ();